結果

問題 No.128 お年玉(1)
ユーザー rabirabi
提出日時 2019-06-24 17:00:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 479 bytes
コンパイル時間 3,139 ms
コンパイル使用メモリ 73,576 KB
実行使用メモリ 37,256 KB
最終ジャッジ日時 2024-10-01 11:03:59
合計ジャッジ時間 4,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
37,056 KB
testcase_01 AC 42 ms
36,924 KB
testcase_02 AC 42 ms
36,712 KB
testcase_03 AC 43 ms
36,960 KB
testcase_04 AC 42 ms
37,132 KB
testcase_05 AC 42 ms
36,832 KB
testcase_06 AC 42 ms
37,244 KB
testcase_07 AC 41 ms
37,244 KB
testcase_08 AC 41 ms
37,120 KB
testcase_09 AC 42 ms
37,060 KB
testcase_10 AC 43 ms
37,008 KB
testcase_11 AC 43 ms
37,204 KB
testcase_12 AC 41 ms
37,004 KB
testcase_13 AC 42 ms
37,008 KB
testcase_14 AC 43 ms
37,056 KB
testcase_15 AC 44 ms
37,008 KB
testcase_16 AC 43 ms
37,256 KB
testcase_17 AC 44 ms
37,140 KB
testcase_18 AC 44 ms
36,988 KB
testcase_19 AC 45 ms
37,188 KB
testcase_20 AC 43 ms
37,172 KB
testcase_21 AC 43 ms
36,928 KB
testcase_22 AC 44 ms
36,840 KB
testcase_23 AC 42 ms
37,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Tester2 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			long min = 1000;
			long M = Long.parseLong(br.readLine());
			long N = Long.parseLong(br.readLine());
			long a = M / min;
			a /= N;
			a *= min;
			System.out.println(a);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0