結果

問題 No.32 貯金箱の憂鬱
ユーザー omc-testomc-test
提出日時 2016-08-04 13:14:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 284 bytes
コンパイル時間 3,290 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-07-23 02:22:37
合計ジャッジ時間 5,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,924 KB
testcase_01 AC 132 ms
54,136 KB
testcase_02 AC 132 ms
54,004 KB
testcase_03 AC 135 ms
53,920 KB
testcase_04 AC 132 ms
54,268 KB
testcase_05 AC 133 ms
53,988 KB
testcase_06 AC 133 ms
54,048 KB
testcase_07 AC 131 ms
54,028 KB
testcase_08 AC 131 ms
54,036 KB
testcase_09 AC 132 ms
54,160 KB
testcase_10 AC 133 ms
53,952 KB
testcase_11 AC 133 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No0032 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt();
		int m = sc.nextInt();
		int n = sc.nextInt();
		System.out.println((n%25) + ((n/25 + m) % 4) + (((n/25 + m) / 4 + l) % 10));
	}
}
0