結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | rururu |
提出日時 | 2017-06-05 18:13:30 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 140 ms / 5,000 ms |
コード長 | 1,485 bytes |
コンパイル時間 | 2,343 ms |
コンパイル使用メモリ | 74,708 KB |
実行使用メモリ | 54,316 KB |
最終ジャッジ日時 | 2024-07-23 04:53:30 |
合計ジャッジ時間 | 4,829 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
54,204 KB |
testcase_01 | AC | 140 ms
53,972 KB |
testcase_02 | AC | 138 ms
54,232 KB |
testcase_03 | AC | 138 ms
54,316 KB |
testcase_04 | AC | 136 ms
54,016 KB |
testcase_05 | AC | 137 ms
53,988 KB |
testcase_06 | AC | 137 ms
54,192 KB |
testcase_07 | AC | 138 ms
54,172 KB |
testcase_08 | AC | 139 ms
54,056 KB |
testcase_09 | AC | 137 ms
54,180 KB |
testcase_10 | AC | 134 ms
53,912 KB |
testcase_11 | AC | 135 ms
54,124 KB |
ソースコード
import java.util.*; import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception { Scanner s = new Scanner(System.in); int L = s.nextInt(); int M = s.nextInt(); int N =s.nextInt(); int K = 0; int S = 0; int R = 0; if(N>24){ K=N/25; N=N%25; M=M+K; } if(M>3){ S=M/4; M=M%4; L=L+S; } if(L>9){ R=L/10; L=L%10; } int sum =L+M+N; System.out.println(sum); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = br.readLine(); } }