結果

問題 No.128 お年玉(1)
ユーザー YatsukuYatsuku
提出日時 2015-12-15 19:53:52
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 430 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 60,816 KB
最終ジャッジ日時 2024-10-01 10:11:25
合計ジャッジ時間 9,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,908 KB
testcase_01 AC 115 ms
53,868 KB
testcase_02 AC 104 ms
53,024 KB
testcase_03 AC 235 ms
53,164 KB
testcase_04 AC 103 ms
52,988 KB
testcase_05 AC 103 ms
52,964 KB
testcase_06 AC 112 ms
53,608 KB
testcase_07 AC 117 ms
53,972 KB
testcase_08 AC 112 ms
53,224 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


class No_128 {
	public static void main(String args[]) {
		Scanner stdIn = new Scanner(System.in);

		long budget = stdIn.nextLong();
		long persons = stdIn.nextLong();

		long count = 0;
		while ( true ) {
			if ( count * (persons * 1000) == budget ) {
				break;
			}
			if ( count * (persons * 1000) > budget ) {
				count--;
				break;
			}
			count++;
		}
		System.out.println(1000 * count);
	}
}
0