結果

問題 No.32 貯金箱の憂鬱
ユーザー ダンネックダンネック
提出日時 2020-05-23 00:51:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 537 bytes
コンパイル時間 3,476 ms
コンパイル使用メモリ 75,148 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-07-23 07:55:49
合計ジャッジ時間 5,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,884 KB
testcase_01 AC 135 ms
54,408 KB
testcase_02 AC 140 ms
54,032 KB
testcase_03 AC 139 ms
53,888 KB
testcase_04 AC 141 ms
53,872 KB
testcase_05 AC 136 ms
54,000 KB
testcase_06 AC 133 ms
54,020 KB
testcase_07 AC 135 ms
54,056 KB
testcase_08 AC 138 ms
53,884 KB
testcase_09 AC 138 ms
54,104 KB
testcase_10 AC 135 ms
54,132 KB
testcase_11 AC 138 ms
53,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class sort{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
		int i = sc.nextInt();
		int j = sc.nextInt();
		int k = sc.nextInt();
		int j_kuriage = 0;
		int k_kuriage= 0;
		int i_total = 0;
		int j_total = 0;
		int k_total = 0;
		k_kuriage = k/25;
		k_total = k%25;
		j_kuriage = (j + k_kuriage)/4;
		j_total = (j + k_kuriage)%4;
		i_total = (i + j_kuriage)%10;
		System.out.println(i_total+j_total+k_total);
        sc.close();
    }
}
0