結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | yuma_shobon1108 |
提出日時 | 2016-11-11 14:47:44 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 134 ms / 5,000 ms |
コード長 | 335 bytes |
コンパイル時間 | 2,046 ms |
コンパイル使用メモリ | 74,132 KB |
実行使用メモリ | 54,480 KB |
最終ジャッジ日時 | 2024-07-23 02:26:48 |
合計ジャッジ時間 | 4,202 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
54,028 KB |
testcase_01 | AC | 133 ms
53,936 KB |
testcase_02 | AC | 132 ms
54,480 KB |
testcase_03 | AC | 131 ms
54,080 KB |
testcase_04 | AC | 132 ms
54,020 KB |
testcase_05 | AC | 133 ms
54,056 KB |
testcase_06 | AC | 130 ms
54,052 KB |
testcase_07 | AC | 134 ms
54,212 KB |
testcase_08 | AC | 117 ms
52,956 KB |
testcase_09 | AC | 132 ms
54,196 KB |
testcase_10 | AC | 133 ms
54,012 KB |
testcase_11 | AC | 132 ms
54,216 KB |
ソースコード
import java.util.Scanner; class Question032 { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int oh = scan.nextInt(); int tf = scan.nextInt(); int one = scan.nextInt(); tf += one/25; one = one%25; oh += tf/4; tf = tf%4; oh = oh%10; System.out.println(one+tf+oh); } }