結果

問題 No.128 お年玉(1)
ユーザー spaciaspacia
提出日時 2015-12-15 23:46:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 369 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 50,488 KB
最終ジャッジ日時 2024-10-01 10:10:49
合計ジャッジ時間 3,605 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,148 KB
testcase_01 AC 50 ms
50,256 KB
testcase_02 AC 48 ms
50,220 KB
testcase_03 AC 48 ms
50,412 KB
testcase_04 AC 48 ms
50,248 KB
testcase_05 AC 47 ms
50,336 KB
testcase_06 AC 48 ms
50,212 KB
testcase_07 AC 47 ms
50,348 KB
testcase_08 AC 48 ms
50,460 KB
testcase_09 AC 48 ms
49,896 KB
testcase_10 AC 48 ms
50,488 KB
testcase_11 AC 49 ms
50,188 KB
testcase_12 AC 48 ms
50,300 KB
testcase_13 AC 47 ms
50,296 KB
testcase_14 AC 47 ms
50,268 KB
testcase_15 AC 47 ms
50,200 KB
testcase_16 AC 48 ms
50,288 KB
testcase_17 AC 48 ms
50,064 KB
testcase_18 AC 47 ms
50,336 KB
testcase_19 AC 48 ms
50,348 KB
testcase_20 AC 48 ms
50,024 KB
testcase_21 AC 49 ms
50,316 KB
testcase_22 AC 48 ms
49,992 KB
testcase_23 AC 47 ms
50,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main128 {
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		long n = Long.parseLong(br.readLine());
		long m = Long.parseLong(br.readLine());
		
		long d = n / m;
		System.out.println(d - (d % 1000));
	}
}
0