結果

問題 No.128 お年玉(1)
ユーザー r.suzukir.suzuki
提出日時 2016-01-03 16:34:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 3,546 ms
コンパイル使用メモリ 75,316 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-10-01 10:13:00
合計ジャッジ時間 6,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,780 KB
testcase_01 AC 101 ms
53,060 KB
testcase_02 AC 113 ms
53,780 KB
testcase_03 AC 97 ms
52,884 KB
testcase_04 AC 113 ms
54,048 KB
testcase_05 AC 112 ms
54,176 KB
testcase_06 AC 110 ms
53,704 KB
testcase_07 AC 112 ms
54,060 KB
testcase_08 AC 112 ms
53,784 KB
testcase_09 AC 103 ms
53,032 KB
testcase_10 AC 112 ms
53,708 KB
testcase_11 AC 102 ms
53,052 KB
testcase_12 AC 113 ms
53,996 KB
testcase_13 AC 112 ms
53,904 KB
testcase_14 AC 113 ms
53,828 KB
testcase_15 AC 113 ms
53,920 KB
testcase_16 AC 96 ms
52,716 KB
testcase_17 AC 95 ms
52,900 KB
testcase_18 AC 101 ms
53,048 KB
testcase_19 AC 99 ms
53,088 KB
testcase_20 AC 110 ms
54,116 KB
testcase_21 AC 101 ms
53,044 KB
testcase_22 AC 120 ms
54,060 KB
testcase_23 AC 104 ms
53,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_128 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		long otoshidama = sc.nextLong();
		long paperMoney = otoshidama / 1000;
		long child = sc.nextLong();
		
		System.out.println(paperMoney / child * 1000);
		sc.close();
		

	}

}
0