結果

問題 No.128 お年玉(1)
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-11 14:52:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 402 bytes
コンパイル時間 3,176 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-10-01 10:17:45
合計ジャッジ時間 6,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
40,140 KB
testcase_01 AC 98 ms
40,324 KB
testcase_02 AC 107 ms
41,180 KB
testcase_03 AC 106 ms
41,188 KB
testcase_04 AC 105 ms
41,296 KB
testcase_05 AC 109 ms
41,116 KB
testcase_06 AC 97 ms
40,184 KB
testcase_07 AC 93 ms
39,600 KB
testcase_08 AC 107 ms
41,288 KB
testcase_09 AC 100 ms
40,252 KB
testcase_10 AC 110 ms
41,336 KB
testcase_11 AC 109 ms
41,464 KB
testcase_12 AC 107 ms
41,228 KB
testcase_13 AC 97 ms
40,000 KB
testcase_14 AC 100 ms
40,336 KB
testcase_15 AC 108 ms
41,276 KB
testcase_16 AC 108 ms
41,188 KB
testcase_17 AC 109 ms
41,608 KB
testcase_18 AC 105 ms
40,892 KB
testcase_19 AC 106 ms
41,604 KB
testcase_20 AC 108 ms
41,380 KB
testcase_21 AC 106 ms
41,348 KB
testcase_22 AC 100 ms
40,272 KB
testcase_23 AC 99 ms
40,380 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