結果

問題 No.128 お年玉(1)
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-01-25 14:00:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 339 bytes
コンパイル時間 3,169 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-10-01 09:46:40
合計ジャッジ時間 7,282 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,028 KB
testcase_01 AC 133 ms
54,084 KB
testcase_02 AC 132 ms
53,976 KB
testcase_03 AC 137 ms
53,928 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 133 ms
54,008 KB
testcase_07 WA -
testcase_08 AC 134 ms
53,688 KB
testcase_09 WA -
testcase_10 AC 133 ms
53,860 KB
testcase_11 AC 134 ms
54,164 KB
testcase_12 AC 132 ms
53,860 KB
testcase_13 AC 131 ms
53,700 KB
testcase_14 AC 134 ms
53,940 KB
testcase_15 AC 132 ms
53,972 KB
testcase_16 AC 134 ms
53,928 KB
testcase_17 AC 135 ms
53,908 KB
testcase_18 AC 124 ms
52,968 KB
testcase_19 AC 134 ms
54,068 KB
testcase_20 AC 134 ms
53,896 KB
testcase_21 AC 134 ms
54,116 KB
testcase_22 AC 133 ms
53,816 KB
testcase_23 AC 133 ms
53,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package j_25;

import java.util.Scanner;

public class FizzBuzz {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	long N = sc.nextLong();
	int M = sc.nextInt();
	if(N>1 && N<(Math.pow(10, 16)) && M >1 && (Math.pow(10, 4)) > M){
		long O = (N / (M * 1000)) * 1000;
		System.out.println(O);
	}else{
		
	}
}
}
0