結果

問題 No.128 お年玉(1)
ユーザー numberfromnumberfrom
提出日時 2020-05-20 10:16:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 73,920 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-10-01 11:18:35
合計ジャッジ時間 5,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,428 KB
testcase_01 AC 109 ms
41,332 KB
testcase_02 AC 106 ms
41,228 KB
testcase_03 AC 98 ms
40,324 KB
testcase_04 AC 102 ms
39,908 KB
testcase_05 AC 116 ms
41,360 KB
testcase_06 AC 107 ms
41,208 KB
testcase_07 AC 110 ms
41,016 KB
testcase_08 AC 105 ms
40,920 KB
testcase_09 AC 103 ms
40,672 KB
testcase_10 AC 108 ms
41,212 KB
testcase_11 AC 107 ms
40,896 KB
testcase_12 AC 98 ms
40,432 KB
testcase_13 AC 115 ms
41,396 KB
testcase_14 AC 113 ms
41,444 KB
testcase_15 AC 102 ms
40,036 KB
testcase_16 AC 108 ms
41,272 KB
testcase_17 AC 109 ms
41,140 KB
testcase_18 AC 116 ms
41,056 KB
testcase_19 AC 116 ms
41,232 KB
testcase_20 AC 115 ms
41,556 KB
testcase_21 AC 105 ms
40,024 KB
testcase_22 AC 107 ms
40,920 KB
testcase_23 AC 109 ms
41,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong() / 1000;
		int m = sc.nextInt();
		sc.close();

		System.out.println(n / m * 1000);

	}

}
0