結果

問題 No.32 貯金箱の憂鬱
ユーザー k_kadorak_kadora
提出日時 2015-05-20 03:13:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 3,393 ms
コンパイル使用メモリ 74,920 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-07-23 02:04:48
合計ジャッジ時間 5,777 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,968 KB
testcase_01 AC 136 ms
54,312 KB
testcase_02 AC 133 ms
53,992 KB
testcase_03 AC 137 ms
54,044 KB
testcase_04 AC 135 ms
54,052 KB
testcase_05 AC 136 ms
54,136 KB
testcase_06 AC 136 ms
53,952 KB
testcase_07 AC 135 ms
54,044 KB
testcase_08 AC 133 ms
54,076 KB
testcase_09 AC 138 ms
53,900 KB
testcase_10 AC 133 ms
54,000 KB
testcase_11 AC 132 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Exchange{
	public static void main(String[] arg){
		int n,m,l;
		Scanner sc = new Scanner(System.in);
		l = sc.nextInt();
		m = sc.nextInt();
		n = sc.nextInt();
		while(n>=25){
			n = n - 25;
			m++;
		}
		while(m>=4){
			m = m - 4;
			l++;
		}
		while(l>=10){
			l = l - 10;
		}
		System.out.println(n+m+l);
	}
}
				
0