結果

問題 No.128 お年玉(1)
ユーザー len_proglen_prog
提出日時 2016-06-14 11:35:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 519 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 61,140 KB
最終ジャッジ日時 2024-10-01 10:20:49
合計ジャッジ時間 17,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,968 KB
testcase_01 AC 122 ms
53,784 KB
testcase_02 AC 129 ms
53,836 KB
testcase_03 AC 219 ms
54,000 KB
testcase_04 AC 121 ms
54,060 KB
testcase_05 AC 121 ms
54,008 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 123 ms
54,232 KB
testcase_09 AC 130 ms
56,200 KB
testcase_10 AC 566 ms
54,020 KB
testcase_11 AC 3,548 ms
53,860 KB
testcase_12 AC 569 ms
53,876 KB
testcase_13 AC 311 ms
54,064 KB
testcase_14 AC 593 ms
53,020 KB
testcase_15 AC 1,012 ms
54,060 KB
testcase_16 AC 215 ms
53,968 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

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();
		long handselAmount = 0;

		if(budget % numOfKids == 0){
			handselAmount = budget / numOfKids;
		}else{
			int handselAmountBase = 1000;

			while(handselAmount * numOfKids < budget){
				handselAmount += handselAmountBase;
			}

			handselAmount -= 1000;
		}

		System.out.println(handselAmount);
		scan.close();
	}

}
0