結果

問題 No.51 やる気の問題
ユーザー koukonkokoukonko
提出日時 2015-12-07 17:09:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 512 bytes
コンパイル時間 2,252 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 50,528 KB
最終ジャッジ日時 2024-09-14 18:26:57
合計ジャッジ時間 4,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,408 KB
testcase_01 AC 56 ms
50,316 KB
testcase_02 AC 57 ms
50,364 KB
testcase_03 AC 57 ms
50,528 KB
testcase_04 AC 57 ms
50,488 KB
testcase_05 AC 58 ms
50,200 KB
testcase_06 AC 58 ms
50,340 KB
testcase_07 AC 57 ms
50,036 KB
testcase_08 AC 57 ms
50,412 KB
testcase_09 AC 60 ms
50,260 KB
testcase_10 AC 58 ms
50,264 KB
testcase_11 AC 58 ms
50,332 KB
testcase_12 AC 57 ms
50,136 KB
testcase_13 AC 57 ms
50,036 KB
testcase_14 AC 57 ms
50,412 KB
testcase_15 AC 58 ms
50,528 KB
testcase_16 AC 56 ms
50,440 KB
testcase_17 AC 56 ms
50,268 KB
testcase_18 AC 60 ms
50,100 KB
testcase_19 AC 58 ms
50,440 KB
testcase_20 AC 57 ms
50,096 KB
testcase_21 AC 56 ms
50,048 KB
testcase_22 AC 60 ms
50,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			int W = Integer.parseInt(buff.readLine());
			double D = Double.parseDouble(buff.readLine());
			while(D > 1){
				W -= (int)(W / Math.pow(D, 2));
				D--;
			}

			System.out.println(W);
		} catch (NumberFormatException e) {

		} catch (IOException e) {

		}
	}
}
0