結果

問題 No.128 お年玉(1)
ユーザー tsunatama5tsunatama5
提出日時 2015-02-04 20:51:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 407 bytes
コンパイル時間 3,241 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-10-01 09:49:42
合計ジャッジ時間 7,131 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,364 KB
testcase_01 AC 124 ms
41,412 KB
testcase_02 AC 108 ms
40,088 KB
testcase_03 AC 119 ms
41,244 KB
testcase_04 AC 119 ms
41,424 KB
testcase_05 AC 122 ms
41,208 KB
testcase_06 AC 106 ms
40,304 KB
testcase_07 AC 105 ms
40,340 KB
testcase_08 AC 111 ms
40,472 KB
testcase_09 AC 120 ms
41,348 KB
testcase_10 AC 122 ms
41,512 KB
testcase_11 AC 120 ms
41,364 KB
testcase_12 AC 124 ms
41,620 KB
testcase_13 AC 120 ms
41,580 KB
testcase_14 AC 118 ms
41,180 KB
testcase_15 AC 125 ms
41,192 KB
testcase_16 AC 126 ms
41,172 KB
testcase_17 AC 131 ms
41,720 KB
testcase_18 AC 110 ms
40,044 KB
testcase_19 AC 111 ms
40,104 KB
testcase_20 AC 122 ms
41,220 KB
testcase_21 AC 124 ms
41,492 KB
testcase_22 AC 124 ms
41,584 KB
testcase_23 AC 121 ms
41,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package P128;

import java.util.Scanner;

public class P128 {
	public static void main(String args[]){
		
		Scanner sc = new Scanner(System.in);
		String n = sc.nextLine();
		double nd = Double.parseDouble(n);
		String m = sc.nextLine();
		double md = Double.parseDouble(m);
		
		double sheet = Math.floor(nd/1000);
		double ans;
		ans = 1000*((sheet-(sheet%md))/md);
		System.out.printf("%.0f",ans);
	}
	
}
0