結果

問題 No.128 お年玉(1)
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-30 16:48:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 3,608 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 37,276 KB
最終ジャッジ日時 2024-10-01 10:41:39
合計ジャッジ時間 4,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
37,136 KB
testcase_01 AC 50 ms
37,108 KB
testcase_02 AC 44 ms
37,128 KB
testcase_03 AC 44 ms
37,076 KB
testcase_04 AC 42 ms
37,080 KB
testcase_05 AC 41 ms
37,072 KB
testcase_06 AC 43 ms
37,108 KB
testcase_07 AC 44 ms
37,004 KB
testcase_08 AC 44 ms
36,676 KB
testcase_09 AC 42 ms
37,004 KB
testcase_10 AC 42 ms
36,964 KB
testcase_11 AC 43 ms
37,128 KB
testcase_12 AC 43 ms
37,128 KB
testcase_13 AC 42 ms
36,708 KB
testcase_14 AC 46 ms
37,276 KB
testcase_15 AC 43 ms
37,004 KB
testcase_16 AC 43 ms
37,148 KB
testcase_17 AC 44 ms
37,240 KB
testcase_18 AC 44 ms
37,236 KB
testcase_19 AC 43 ms
37,056 KB
testcase_20 AC 47 ms
37,248 KB
testcase_21 AC 44 ms
36,960 KB
testcase_22 AC 43 ms
36,960 KB
testcase_23 AC 45 ms
36,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No128 {
		public static void main(String args[]){
			try{
				BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
         		long budget = Long.parseLong(br.readLine());
         		int member = Integer.parseInt(br.readLine());
         		System.out.println((budget / (member*1000)) * 1000);
			}catch(Exception e){
				e.getStackTrace();
			}
	}
}
0