結果

問題 No.128 お年玉(1)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-19 22:23:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 238 bytes
コンパイル時間 3,558 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2024-10-01 10:21:34
合計ジャッジ時間 7,129 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,528 KB
testcase_01 AC 118 ms
41,308 KB
testcase_02 AC 124 ms
41,344 KB
testcase_03 AC 108 ms
40,232 KB
testcase_04 AC 107 ms
40,148 KB
testcase_05 AC 119 ms
41,568 KB
testcase_06 AC 119 ms
41,388 KB
testcase_07 AC 118 ms
41,600 KB
testcase_08 AC 107 ms
39,900 KB
testcase_09 AC 121 ms
41,344 KB
testcase_10 AC 112 ms
40,328 KB
testcase_11 AC 110 ms
40,176 KB
testcase_12 AC 110 ms
40,072 KB
testcase_13 AC 123 ms
41,440 KB
testcase_14 AC 123 ms
41,372 KB
testcase_15 AC 124 ms
41,480 KB
testcase_16 AC 127 ms
41,488 KB
testcase_17 AC 124 ms
41,820 KB
testcase_18 AC 122 ms
41,416 KB
testcase_19 AC 122 ms
41,312 KB
testcase_20 AC 107 ms
40,312 KB
testcase_21 AC 108 ms
39,908 KB
testcase_22 AC 120 ms
41,228 KB
testcase_23 AC 115 ms
41,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise99{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    long n = sc.nextLong();
    int m = sc.nextInt();
    System.out.println((n / 1000) / m * 1000);
  }
}
0