結果

問題 No.51 やる気の問題
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 11:29:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 231 bytes
コンパイル時間 2,590 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 54,992 KB
最終ジャッジ日時 2024-06-23 23:41:54
合計ジャッジ時間 7,231 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
54,568 KB
testcase_01 AC 165 ms
54,544 KB
testcase_02 AC 166 ms
54,424 KB
testcase_03 AC 168 ms
54,668 KB
testcase_04 AC 166 ms
54,232 KB
testcase_05 AC 171 ms
54,536 KB
testcase_06 AC 167 ms
54,624 KB
testcase_07 AC 167 ms
54,992 KB
testcase_08 AC 166 ms
54,584 KB
testcase_09 AC 172 ms
54,188 KB
testcase_10 AC 161 ms
54,360 KB
testcase_11 AC 166 ms
54,224 KB
testcase_12 AC 169 ms
54,360 KB
testcase_13 AC 166 ms
54,516 KB
testcase_14 AC 166 ms
54,320 KB
testcase_15 AC 170 ms
54,424 KB
testcase_16 AC 170 ms
54,516 KB
testcase_17 AC 168 ms
54,376 KB
testcase_18 AC 178 ms
54,364 KB
testcase_19 AC 167 ms
54,384 KB
testcase_20 AC 168 ms
54,528 KB
testcase_21 AC 167 ms
54,508 KB
testcase_22 AC 170 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		float W=s.nextFloat(),D=s.nextFloat();
		while(D>1)W-=(int)(W/D/(D--));
		System.out.println((int)W);
	}
}
0