結果

問題 No.51 やる気の問題
ユーザー shinwisteriashinwisteria
提出日時 2019-01-21 21:52:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 334 bytes
コンパイル時間 3,302 ms
コンパイル使用メモリ 73,760 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-09-15 13:15:52
合計ジャッジ時間 7,732 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,440 KB
testcase_01 AC 142 ms
41,380 KB
testcase_02 AC 141 ms
41,452 KB
testcase_03 AC 138 ms
41,472 KB
testcase_04 AC 138 ms
41,520 KB
testcase_05 AC 145 ms
41,068 KB
testcase_06 AC 149 ms
41,232 KB
testcase_07 AC 147 ms
41,240 KB
testcase_08 AC 142 ms
41,656 KB
testcase_09 AC 148 ms
41,652 KB
testcase_10 AC 144 ms
41,484 KB
testcase_11 AC 147 ms
41,560 KB
testcase_12 AC 145 ms
41,376 KB
testcase_13 AC 146 ms
41,304 KB
testcase_14 AC 143 ms
41,688 KB
testcase_15 AC 147 ms
41,572 KB
testcase_16 AC 133 ms
41,588 KB
testcase_17 AC 148 ms
41,368 KB
testcase_18 AC 150 ms
41,508 KB
testcase_19 AC 145 ms
41,472 KB
testcase_20 AC 146 ms
41,672 KB
testcase_21 AC 144 ms
41,436 KB
testcase_22 AC 143 ms
41,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No51 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		double W = s.nextDouble() , D = s.nextDouble();
		s.close();
		for(int i = 0;i < D -1;i++){
			double d2 = D - i;
			int w2 = (int)Math.floor(W/d2/d2);
			W -= w2;
		}
		System.out.println((int)W);

	}

}
0