結果

問題 No.32 貯金箱の憂鬱
ユーザー shinshin
提出日時 2022-05-15 18:56:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 511 bytes
コンパイル時間 4,559 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 50,388 KB
最終ジャッジ日時 2024-09-13 04:18:42
合計ジャッジ時間 4,513 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,244 KB
testcase_01 AC 53 ms
50,372 KB
testcase_02 AC 53 ms
50,200 KB
testcase_03 AC 54 ms
50,228 KB
testcase_04 AC 55 ms
50,004 KB
testcase_05 AC 54 ms
50,068 KB
testcase_06 AC 54 ms
50,172 KB
testcase_07 AC 54 ms
50,220 KB
testcase_08 AC 53 ms
50,092 KB
testcase_09 AC 53 ms
50,280 KB
testcase_10 AC 54 ms
50,216 KB
testcase_11 AC 53 ms
50,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class No32 {

	public static void main(String[] args) throws IOException{
		//貯金箱の憂鬱
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int L = Integer.parseInt(br.readLine()) , M = Integer.parseInt(br.readLine()) , N = Integer.parseInt(br.readLine());
		br.close();
		
		M += (int)(N / 25);
		L += (int)(M / 4);

		System.out.println((L % 10) + (M % 4) + (N % 25));
	}

}
0