結果

問題 No.51 やる気の問題
ユーザー kuramukuramu
提出日時 2016-01-20 22:57:53
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 543 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 73,528 KB
実行使用メモリ 37,284 KB
最終ジャッジ日時 2024-09-21 14:52:10
合計ジャッジ時間 3,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,492 KB
testcase_01 AC 49 ms
36,924 KB
testcase_02 AC 48 ms
37,104 KB
testcase_03 AC 49 ms
36,648 KB
testcase_04 AC 50 ms
36,988 KB
testcase_05 RE -
testcase_06 AC 50 ms
36,832 KB
testcase_07 AC 50 ms
37,056 KB
testcase_08 AC 47 ms
36,932 KB
testcase_09 RE -
testcase_10 AC 46 ms
36,968 KB
testcase_11 AC 46 ms
37,056 KB
testcase_12 AC 50 ms
36,872 KB
testcase_13 AC 50 ms
36,796 KB
testcase_14 AC 48 ms
37,116 KB
testcase_15 RE -
testcase_16 AC 47 ms
36,540 KB
testcase_17 AC 45 ms
37,040 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 48 ms
36,668 KB
testcase_21 AC 49 ms
36,652 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

	      try {
		      int W = Integer.parseInt(stdReader.readLine());
		      int D = Integer.parseInt(stdReader.readLine());	      
		      for(int i=D;1<i;i--){
		    	  W -= W/(i*i);
		      }
		      System.out.println(W);
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}	
}
0