結果

問題 No.128 お年玉(1)
ユーザー YatsukuYatsuku
提出日時 2015-12-15 20:02:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 73,884 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-10-01 10:10:56
合計ジャッジ時間 5,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,872 KB
testcase_01 AC 119 ms
53,960 KB
testcase_02 AC 119 ms
53,884 KB
testcase_03 AC 121 ms
54,044 KB
testcase_04 AC 122 ms
54,052 KB
testcase_05 AC 121 ms
53,972 KB
testcase_06 AC 110 ms
52,772 KB
testcase_07 AC 124 ms
54,008 KB
testcase_08 AC 122 ms
54,172 KB
testcase_09 AC 120 ms
53,780 KB
testcase_10 AC 122 ms
53,976 KB
testcase_11 AC 121 ms
53,772 KB
testcase_12 AC 129 ms
54,204 KB
testcase_13 AC 131 ms
53,752 KB
testcase_14 AC 124 ms
53,964 KB
testcase_15 AC 124 ms
54,104 KB
testcase_16 AC 124 ms
54,060 KB
testcase_17 AC 130 ms
53,832 KB
testcase_18 AC 128 ms
54,068 KB
testcase_19 AC 129 ms
53,940 KB
testcase_20 AC 129 ms
53,892 KB
testcase_21 AC 124 ms
54,088 KB
testcase_22 AC 125 ms
54,020 KB
testcase_23 AC 126 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

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 money = (budget / 1000) / persons * 1000;

		System.out.println(money);
	}
}
0