結果

問題 No.128 お年玉(1)
ユーザー SuunnSuunn
提出日時 2018-11-20 07:35:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 246 bytes
コンパイル時間 2,527 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-10-01 10:53:53
合計ジャッジ時間 5,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,320 KB
testcase_01 AC 107 ms
40,312 KB
testcase_02 AC 124 ms
41,484 KB
testcase_03 AC 108 ms
41,460 KB
testcase_04 AC 108 ms
41,228 KB
testcase_05 AC 113 ms
41,468 KB
testcase_06 AC 101 ms
40,312 KB
testcase_07 AC 106 ms
40,516 KB
testcase_08 AC 96 ms
39,900 KB
testcase_09 AC 106 ms
41,024 KB
testcase_10 AC 100 ms
40,068 KB
testcase_11 AC 101 ms
40,076 KB
testcase_12 AC 100 ms
40,072 KB
testcase_13 AC 97 ms
40,304 KB
testcase_14 AC 98 ms
40,428 KB
testcase_15 AC 101 ms
40,200 KB
testcase_16 AC 120 ms
41,684 KB
testcase_17 AC 114 ms
41,432 KB
testcase_18 AC 102 ms
40,036 KB
testcase_19 AC 99 ms
40,184 KB
testcase_20 AC 103 ms
40,316 KB
testcase_21 AC 100 ms
39,896 KB
testcase_22 AC 108 ms
41,192 KB
testcase_23 AC 97 ms
39,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		Scanner sc = new Scanner(System.in);

		long N = sc.nextLong();
		long M = sc.nextLong();
		System.out.println(N/1000/M*1000);
	}
	

}
0