結果

問題 No.128 お年玉(1)
ユーザー 37zigen37zigen
提出日時 2016-03-31 18:28:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 3,375 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-10-01 10:15:50
合計ジャッジ時間 6,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,080 KB
testcase_01 AC 122 ms
54,028 KB
testcase_02 AC 125 ms
53,816 KB
testcase_03 AC 124 ms
53,796 KB
testcase_04 AC 120 ms
53,992 KB
testcase_05 AC 125 ms
53,776 KB
testcase_06 AC 132 ms
54,252 KB
testcase_07 AC 128 ms
53,824 KB
testcase_08 AC 122 ms
53,756 KB
testcase_09 AC 123 ms
53,752 KB
testcase_10 AC 125 ms
54,008 KB
testcase_11 AC 110 ms
53,084 KB
testcase_12 AC 124 ms
53,900 KB
testcase_13 AC 122 ms
54,024 KB
testcase_14 AC 126 ms
54,024 KB
testcase_15 AC 124 ms
53,952 KB
testcase_16 AC 127 ms
53,956 KB
testcase_17 AC 122 ms
53,792 KB
testcase_18 AC 123 ms
53,688 KB
testcase_19 AC 119 ms
53,836 KB
testcase_20 AC 121 ms
53,692 KB
testcase_21 AC 121 ms
53,796 KB
testcase_22 AC 121 ms
54,180 KB
testcase_23 AC 122 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder128;
import java.util.Scanner;
public class yukicoder128 {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong();
		n=n/1000;
		long m=sc.nextLong();
		System.out.println(((long)(n/m))*1000);
	}
}
0