結果

問題 No.128 お年玉(1)
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-01-25 14:08:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 276 bytes
コンパイル時間 3,306 ms
コンパイル使用メモリ 73,892 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-10-01 09:47:51
合計ジャッジ時間 6,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,856 KB
testcase_01 AC 127 ms
53,696 KB
testcase_02 AC 127 ms
54,124 KB
testcase_03 AC 125 ms
54,272 KB
testcase_04 AC 123 ms
54,120 KB
testcase_05 AC 124 ms
54,132 KB
testcase_06 AC 124 ms
53,736 KB
testcase_07 AC 134 ms
53,888 KB
testcase_08 AC 131 ms
53,732 KB
testcase_09 AC 130 ms
54,208 KB
testcase_10 AC 136 ms
54,148 KB
testcase_11 AC 133 ms
54,088 KB
testcase_12 AC 124 ms
54,096 KB
testcase_13 AC 119 ms
54,084 KB
testcase_14 AC 121 ms
54,032 KB
testcase_15 AC 116 ms
53,780 KB
testcase_16 AC 117 ms
54,032 KB
testcase_17 AC 118 ms
54,172 KB
testcase_18 AC 122 ms
54,064 KB
testcase_19 AC 128 ms
54,064 KB
testcase_20 AC 128 ms
53,940 KB
testcase_21 AC 128 ms
54,124 KB
testcase_22 AC 127 ms
54,280 KB
testcase_23 AC 128 ms
54,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package j_25;

import java.util.Scanner;

public class Otoshidama {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	long N = sc.nextLong();
	long M = sc.nextLong();
	sc.close();
		long O = (N / (M * 1000)) * 1000;
		System.out.println(O);
	}
}
0