結果

問題 No.32 貯金箱の憂鬱
ユーザー hhgfhn1hhgfhn1
提出日時 2018-08-21 17:17:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 928 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-07-23 07:14:59
合計ジャッジ時間 4,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class sampleA {
	private static int n;
	private static int m;
	private static int l;

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);
		l = scan.nextInt();
		m = scan.nextInt();
		n = scan.nextInt();

		m += change25();
		l += change100();
		change1000();

		System.out.println(l + m + n);
	}

	private static int change25() {
		// TODO 自動生成されたメソッド・スタブ
		int m = 0;
		for (int i = n; i >= 25; i -= 25) {
			m++;
			n -= 25;
		}
		return m;
	}

	private static int change100() {
		// TODO 自動生成されたメソッド・スタブ
		int l = 0;
		for (int i = m; i >= 4; i -= 4) {
			l++;
			m -= 4;
		}
		return l;
	}

	private static int change1000() {
		// TODO 自動生成されたメソッド・スタブ
		int k = 0;
		for (int i = l; i >= 10; i -= 10) {
			k++;
			l -= 10;
		}
		return k;
	}

}
0