結果

問題 No.51 やる気の問題
ユーザー kuramukuramu
提出日時 2016-01-21 00:25:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 565 bytes
コンパイル時間 1,841 ms
コンパイル使用メモリ 73,048 KB
実行使用メモリ 37,092 KB
最終ジャッジ日時 2024-09-21 14:53:29
合計ジャッジ時間 3,744 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,924 KB
testcase_01 AC 47 ms
36,540 KB
testcase_02 AC 45 ms
36,544 KB
testcase_03 AC 46 ms
36,652 KB
testcase_04 AC 45 ms
37,000 KB
testcase_05 AC 49 ms
36,976 KB
testcase_06 AC 49 ms
36,932 KB
testcase_07 AC 50 ms
36,568 KB
testcase_08 AC 50 ms
36,548 KB
testcase_09 AC 52 ms
36,932 KB
testcase_10 AC 49 ms
36,916 KB
testcase_11 AC 50 ms
37,024 KB
testcase_12 AC 51 ms
36,680 KB
testcase_13 AC 52 ms
36,980 KB
testcase_14 AC 50 ms
36,736 KB
testcase_15 AC 51 ms
36,640 KB
testcase_16 AC 47 ms
36,544 KB
testcase_17 AC 48 ms
37,032 KB
testcase_18 AC 53 ms
36,780 KB
testcase_19 AC 50 ms
37,092 KB
testcase_20 AC 50 ms
36,520 KB
testcase_21 AC 49 ms
36,540 KB
testcase_22 AC 51 ms
36,556 KB
権限があれば一括ダウンロードができます

ソースコード

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 {
		      long W =Long.parseLong(stdReader.readLine());
		      long D = Long.parseLong(stdReader.readLine());
		      while(D>1){
		    	  long temp = W /(D*D);
		    	  W -= temp;
		    	  D--;
		      }
		      System.out.println(W);
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}	
}
0