結果

問題 No.128 お年玉(1)
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-11 14:38:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 3,464 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 56,212 KB
最終ジャッジ日時 2024-10-01 10:18:17
合計ジャッジ時間 6,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
40,292 KB
testcase_01 AC 108 ms
41,100 KB
testcase_02 AC 108 ms
41,736 KB
testcase_03 AC 99 ms
39,908 KB
testcase_04 WA -
testcase_05 AC 96 ms
39,892 KB
testcase_06 AC 107 ms
41,424 KB
testcase_07 AC 104 ms
39,904 KB
testcase_08 AC 100 ms
40,400 KB
testcase_09 AC 99 ms
39,888 KB
testcase_10 AC 107 ms
41,312 KB
testcase_11 AC 112 ms
41,480 KB
testcase_12 AC 99 ms
40,260 KB
testcase_13 AC 106 ms
41,212 KB
testcase_14 AC 107 ms
41,148 KB
testcase_15 AC 110 ms
41,396 KB
testcase_16 AC 106 ms
41,396 KB
testcase_17 AC 98 ms
40,104 KB
testcase_18 AC 95 ms
40,648 KB
testcase_19 AC 108 ms
41,116 KB
testcase_20 AC 106 ms
41,344 KB
testcase_21 AC 98 ms
40,020 KB
testcase_22 AC 105 ms
41,304 KB
testcase_23 AC 109 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki11 {
	
	public static void main(String[] args) {
		
		final int thousand = 1000;
		
		Scanner scan = new Scanner(System.in);
		long n = scan.nextLong();
		int m = scan.nextInt();
		scan.close();
		
	    if(n>m*thousand && m > 0){
	    	System.out.println(thousand*(n/(m*thousand)));
	    }else{
	    	System.out.println(0);
	    }
	}
}
0