結果

問題 No.128 お年玉(1)
ユーザー wreulickewreulicke
提出日時 2015-10-04 06:41:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 383 bytes
コンパイル時間 2,928 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-10-01 10:04:40
合計ジャッジ時間 4,785 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,248 KB
testcase_01 AC 46 ms
36,684 KB
testcase_02 AC 50 ms
37,120 KB
testcase_03 AC 49 ms
37,000 KB
testcase_04 AC 48 ms
37,000 KB
testcase_05 AC 49 ms
36,876 KB
testcase_06 AC 48 ms
37,076 KB
testcase_07 AC 47 ms
37,060 KB
testcase_08 AC 47 ms
36,808 KB
testcase_09 AC 46 ms
37,132 KB
testcase_10 AC 46 ms
37,120 KB
testcase_11 AC 46 ms
37,208 KB
testcase_12 AC 46 ms
37,056 KB
testcase_13 AC 45 ms
37,000 KB
testcase_14 AC 46 ms
37,056 KB
testcase_15 AC 45 ms
36,900 KB
testcase_16 AC 46 ms
37,244 KB
testcase_17 AC 45 ms
36,920 KB
testcase_18 AC 45 ms
37,084 KB
testcase_19 AC 45 ms
36,904 KB
testcase_20 AC 46 ms
37,064 KB
testcase_21 AC 48 ms
36,620 KB
testcase_22 AC 46 ms
36,620 KB
testcase_23 AC 46 ms
36,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Test{
  public static void main(String[] args)throws Exception{
      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);
  }
}
0