結果

問題 No.128 お年玉(1)
ユーザー kuramukuramu
提出日時 2016-01-25 23:51:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 479 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 50,316 KB
最終ジャッジ日時 2024-10-01 10:14:00
合計ジャッジ時間 4,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
49,852 KB
testcase_01 AC 55 ms
50,084 KB
testcase_02 AC 54 ms
50,252 KB
testcase_03 AC 55 ms
50,108 KB
testcase_04 AC 55 ms
50,084 KB
testcase_05 AC 55 ms
50,188 KB
testcase_06 AC 55 ms
50,256 KB
testcase_07 AC 56 ms
49,956 KB
testcase_08 AC 54 ms
50,128 KB
testcase_09 AC 56 ms
50,212 KB
testcase_10 AC 55 ms
50,104 KB
testcase_11 AC 55 ms
50,224 KB
testcase_12 AC 55 ms
50,308 KB
testcase_13 AC 55 ms
50,056 KB
testcase_14 AC 55 ms
49,928 KB
testcase_15 AC 55 ms
49,840 KB
testcase_16 AC 55 ms
50,212 KB
testcase_17 AC 56 ms
49,840 KB
testcase_18 AC 55 ms
50,316 KB
testcase_19 AC 55 ms
49,864 KB
testcase_20 AC 55 ms
49,840 KB
testcase_21 AC 55 ms
49,968 KB
testcase_22 AC 56 ms
50,224 KB
testcase_23 AC 57 ms
50,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	long n = Long.parseLong(stdReader.readLine());
	    	int m = Integer.parseInt(stdReader.readLine());
	    	System.out.println(n/(m*1000)*1000);
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}

}
0