結果

問題 No.51 やる気の問題
ユーザー fukuseifukusei
提出日時 2017-05-23 00:29:30
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 270 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 56,316 KB
最終ジャッジ日時 2024-09-19 10:28:35
合計ジャッジ時間 5,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
52,252 KB
testcase_01 AC 119 ms
54,096 KB
testcase_02 AC 124 ms
54,032 KB
testcase_03 AC 123 ms
54,016 KB
testcase_04 AC 112 ms
52,816 KB
testcase_05 RE -
testcase_06 AC 108 ms
53,072 KB
testcase_07 AC 104 ms
52,556 KB
testcase_08 AC 120 ms
54,124 KB
testcase_09 RE -
testcase_10 AC 104 ms
53,016 KB
testcase_11 AC 119 ms
54,136 KB
testcase_12 AC 110 ms
53,756 KB
testcase_13 AC 121 ms
54,004 KB
testcase_14 AC 115 ms
54,104 KB
testcase_15 RE -
testcase_16 AC 115 ms
54,068 KB
testcase_17 AC 117 ms
54,236 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 109 ms
53,016 KB
testcase_21 AC 117 ms
54,184 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class test{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int W = sc.nextInt();
		int D = sc.nextInt();
		
		if(D != 1){
			for(int i=D; i>1; i--){
				W -= W / (i * i);
				
			}
		}
		System.out.println(W);
	}
}
0