結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | KazukiAkita |
提出日時 | 2017-10-26 17:57:21 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 454 bytes |
コンパイル時間 | 2,191 ms |
コンパイル使用メモリ | 73,920 KB |
実行使用メモリ | 54,440 KB |
最終ジャッジ日時 | 2024-05-01 15:13:53 |
合計ジャッジ時間 | 4,327 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
54,224 KB |
testcase_01 | AC | 136 ms
54,112 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 132 ms
54,028 KB |
testcase_05 | WA | - |
testcase_06 | AC | 134 ms
54,132 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 133 ms
53,872 KB |
testcase_11 | WA | - |
ソースコード
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 O = N / 25; int P = (O + M) / 4; int Q = (P + L) / 10; System.out.println(N % 25 + P % 4 + Q % 10); //ここまで sc.close(); } }