結果

問題 No.32 貯金箱の憂鬱
ユーザー ぴろずぴろず
提出日時 2014-12-18 13:17:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 353 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-07-23 02:00:47
合計ジャッジ時間 4,470 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,120 KB
testcase_01 AC 134 ms
54,028 KB
testcase_02 AC 140 ms
53,852 KB
testcase_03 AC 134 ms
53,884 KB
testcase_04 AC 138 ms
53,968 KB
testcase_05 AC 137 ms
53,964 KB
testcase_06 AC 135 ms
53,904 KB
testcase_07 AC 134 ms
54,128 KB
testcase_08 AC 133 ms
53,844 KB
testcase_09 AC 135 ms
54,008 KB
testcase_10 AC 141 ms
54,180 KB
testcase_11 AC 134 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no032;

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();
		m += n / 25; n -= (n / 25) * 25;
		l += m / 4;  m -= (m / 4) * 4;
		l %= 10;
		System.out.println(l + m + n);
	}

}
0