結果

問題 No.128 お年玉(1)
ユーザー len_proglen_prog
提出日時 2016-06-14 11:40:00
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 580 bytes
コンパイル時間 1,818 ms
コンパイル使用メモリ 73,780 KB
実行使用メモリ 61,132 KB
最終ジャッジ日時 2024-10-01 10:20:21
合計ジャッジ時間 16,878 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,000 KB
testcase_01 AC 127 ms
53,964 KB
testcase_02 AC 121 ms
53,844 KB
testcase_03 AC 214 ms
53,836 KB
testcase_04 AC 119 ms
54,080 KB
testcase_05 AC 121 ms
54,108 KB
testcase_06 AC 121 ms
54,116 KB
testcase_07 AC 129 ms
54,004 KB
testcase_08 AC 122 ms
54,200 KB
testcase_09 AC 122 ms
54,292 KB
testcase_10 AC 557 ms
56,104 KB
testcase_11 AC 3,710 ms
54,044 KB
testcase_12 AC 563 ms
53,892 KB
testcase_13 AC 292 ms
54,160 KB
testcase_14 AC 576 ms
54,008 KB
testcase_15 AC 1,004 ms
53,920 KB
testcase_16 AC 221 ms
53,936 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 < 1000){
			handselAmount = 0;
		}else 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