結果

問題 No.128 お年玉(1)
ユーザー m4s4k1ch1m4s4k1ch1
提出日時 2015-05-28 15:24:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 416 bytes
コンパイル時間 1,602 ms
コンパイル使用メモリ 72,996 KB
実行使用メモリ 37,244 KB
最終ジャッジ日時 2024-10-01 09:58:24
合計ジャッジ時間 3,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
37,084 KB
testcase_01 AC 43 ms
36,576 KB
testcase_02 AC 42 ms
36,964 KB
testcase_03 AC 42 ms
37,116 KB
testcase_04 AC 42 ms
36,700 KB
testcase_05 AC 43 ms
37,188 KB
testcase_06 AC 44 ms
36,712 KB
testcase_07 AC 43 ms
36,620 KB
testcase_08 AC 44 ms
36,856 KB
testcase_09 AC 45 ms
37,116 KB
testcase_10 AC 47 ms
37,244 KB
testcase_11 AC 43 ms
36,620 KB
testcase_12 AC 42 ms
36,900 KB
testcase_13 AC 42 ms
37,084 KB
testcase_14 AC 43 ms
36,900 KB
testcase_15 AC 43 ms
36,928 KB
testcase_16 AC 43 ms
36,964 KB
testcase_17 AC 43 ms
37,076 KB
testcase_18 AC 43 ms
37,188 KB
testcase_19 AC 43 ms
36,928 KB
testcase_20 AC 43 ms
36,912 KB
testcase_21 AC 42 ms
36,724 KB
testcase_22 AC 42 ms
37,116 KB
testcase_23 AC 45 ms
36,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String args[]) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String line = br.readLine();
		long money = Long.parseLong(line);
		line = br.readLine();
		int children = Integer.parseInt(line);
		
		System.out.println(money / children / 1000 * 1000);
	}
}
0