結果

問題 No.128 お年玉(1)
ユーザー len_proglen_prog
提出日時 2016-06-14 11:47:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 2,357 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-10-01 10:21:41
合計ジャッジ時間 5,356 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,180 KB
testcase_01 AC 104 ms
40,324 KB
testcase_02 AC 117 ms
41,164 KB
testcase_03 AC 115 ms
41,260 KB
testcase_04 AC 122 ms
41,248 KB
testcase_05 AC 102 ms
40,120 KB
testcase_06 AC 105 ms
40,008 KB
testcase_07 AC 113 ms
41,324 KB
testcase_08 AC 101 ms
40,196 KB
testcase_09 AC 114 ms
41,532 KB
testcase_10 AC 118 ms
41,552 KB
testcase_11 AC 100 ms
40,032 KB
testcase_12 AC 107 ms
41,180 KB
testcase_13 AC 103 ms
40,120 KB
testcase_14 AC 110 ms
40,988 KB
testcase_15 AC 97 ms
40,064 KB
testcase_16 AC 97 ms
40,340 KB
testcase_17 AC 110 ms
41,724 KB
testcase_18 AC 101 ms
40,588 KB
testcase_19 AC 117 ms
41,236 KB
testcase_20 AC 101 ms
40,116 KB
testcase_21 AC 100 ms
40,148 KB
testcase_22 AC 113 ms
41,432 KB
testcase_23 AC 116 ms
41,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long budget = scan.nextLong();
		int numOfKids = scan.nextInt();

		System.out.println(1000 * (budget / (1000 * numOfKids)));
		scan.close();
	}

}
0