(URI) Notas e Moedas - Solução
Desempenho no URI: import java.io.*; import java.util.*; class Main { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String linha = br.readLine(); String[] dinheiro = new String[2]; dinheiro = linha.split("\\."); int notas = Integer.parseInt(dinheiro[0]); int moedas = Integer.parseInt(dinheiro[1]); int restoNotas = 0; int notasCem = notas/100; ...