結果

問題 No.128 お年玉(1)
ユーザー mits58mits58
提出日時 2015-07-18 01:21:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 73,916 KB
実行使用メモリ 41,248 KB
最終ジャッジ日時 2024-10-01 09:59:55
合計ジャッジ時間 5,172 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,944 KB
testcase_01 AC 110 ms
40,936 KB
testcase_02 AC 106 ms
40,920 KB
testcase_03 AC 106 ms
41,248 KB
testcase_04 AC 105 ms
41,236 KB
testcase_05 AC 98 ms
40,096 KB
testcase_06 AC 107 ms
41,200 KB
testcase_07 AC 102 ms
40,144 KB
testcase_08 AC 100 ms
40,368 KB
testcase_09 AC 99 ms
40,112 KB
testcase_10 AC 94 ms
39,652 KB
testcase_11 AC 102 ms
40,436 KB
testcase_12 AC 99 ms
40,272 KB
testcase_13 AC 99 ms
39,984 KB
testcase_14 AC 100 ms
40,256 KB
testcase_15 AC 108 ms
41,088 KB
testcase_16 AC 107 ms
41,128 KB
testcase_17 AC 105 ms
41,116 KB
testcase_18 AC 103 ms
40,772 KB
testcase_19 AC 108 ms
40,884 KB
testcase_20 AC 110 ms
40,996 KB
testcase_21 AC 100 ms
40,024 KB
testcase_22 AC 110 ms
41,216 KB
testcase_23 AC 98 ms
39,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	long n=sc.nextLong();
        	long m=sc.nextLong();
        	
        	if(n/m<1000) System.out.println(0);
        	else{
        		long temp=n/1000/m;
        		temp=temp*1000;
        		System.out.println(temp);
        	}
        }
    }
}
0