結果

問題 No.32 貯金箱の憂鬱
ユーザー econo_coffeeecono_coffee
提出日時 2017-03-23 18:24:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 336 bytes
コンパイル時間 4,338 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-07-23 04:06:20
合計ジャッジ時間 6,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,536 KB
testcase_01 AC 137 ms
41,404 KB
testcase_02 AC 132 ms
41,196 KB
testcase_03 AC 133 ms
41,116 KB
testcase_04 AC 132 ms
41,328 KB
testcase_05 AC 128 ms
41,116 KB
testcase_06 AC 118 ms
40,028 KB
testcase_07 AC 137 ms
41,064 KB
testcase_08 AC 135 ms
41,204 KB
testcase_09 AC 141 ms
41,404 KB
testcase_10 AC 134 ms
41,204 KB
testcase_11 AC 139 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yukicoder {

	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 sum = 0;

		M += N / 25;
		sum += N % 25;

		L += M / 4;
		sum += M % 4;

		sum += L % 10;

		System.out.println(sum);

	}

}
0