結果

問題 No.51 やる気の問題
ユーザー m2543315647m2543315647
提出日時 2015-05-22 16:30:02
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 228 bytes
コンパイル時間 2,822 ms
コンパイル使用メモリ 73,832 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-07-06 04:44:13
合計ジャッジ時間 6,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,132 KB
testcase_01 AC 100 ms
40,972 KB
testcase_02 AC 109 ms
41,028 KB
testcase_03 AC 99 ms
39,872 KB
testcase_04 AC 109 ms
41,392 KB
testcase_05 RE -
testcase_06 AC 109 ms
41,464 KB
testcase_07 AC 103 ms
40,292 KB
testcase_08 AC 100 ms
40,056 KB
testcase_09 RE -
testcase_10 AC 106 ms
40,816 KB
testcase_11 AC 110 ms
40,928 KB
testcase_12 AC 110 ms
41,212 KB
testcase_13 AC 102 ms
39,740 KB
testcase_14 AC 99 ms
40,312 KB
testcase_15 RE -
testcase_16 AC 116 ms
41,372 KB
testcase_17 AC 110 ms
41,268 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 101 ms
41,236 KB
testcase_21 AC 100 ms
40,256 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No51 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int w=sc.nextInt();
		for(int d=sc.nextInt();d>1;d--)
			w-=w/(d*d);
		System.out.println(w);
	}
}
0