結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | Katooooo |
提出日時 | 2017-09-12 14:05:34 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 140 ms / 5,000 ms |
コード長 | 570 bytes |
コンパイル時間 | 2,659 ms |
コンパイル使用メモリ | 74,660 KB |
実行使用メモリ | 54,544 KB |
最終ジャッジ日時 | 2024-07-23 06:44:09 |
合計ジャッジ時間 | 5,225 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
54,544 KB |
testcase_01 | AC | 135 ms
54,168 KB |
testcase_02 | AC | 135 ms
54,308 KB |
testcase_03 | AC | 134 ms
53,980 KB |
testcase_04 | AC | 134 ms
53,928 KB |
testcase_05 | AC | 138 ms
54,052 KB |
testcase_06 | AC | 140 ms
54,060 KB |
testcase_07 | AC | 138 ms
54,088 KB |
testcase_08 | AC | 135 ms
54,044 KB |
testcase_09 | AC | 136 ms
54,236 KB |
testcase_10 | AC | 136 ms
54,260 KB |
testcase_11 | AC | 136 ms
53,960 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int L = sc.nextInt(); int M = sc.nextInt(); int N = sc.nextInt(); int add_M = (int)N/25; int lost_N = N - add_M*25; M = M + add_M; int add_L = (int)M/4; int lost_M = M - add_L*4; L = L + add_L; int add_O = (int)L/10; int lost_L = L - add_O*10; System.out.println(lost_N+lost_M+lost_L); } }