結果

問題 No.51 やる気の問題
ユーザー itezpaceitezpace
提出日時 2016-08-21 11:27:55
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 273 bytes
コンパイル時間 4,018 ms
コンパイル使用メモリ 83,304 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-11-07 22:23:19
合計ジャッジ時間 8,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,096 KB
testcase_01 AC 125 ms
40,292 KB
testcase_02 AC 127 ms
41,284 KB
testcase_03 AC 128 ms
41,520 KB
testcase_04 AC 115 ms
40,188 KB
testcase_05 RE -
testcase_06 AC 128 ms
41,216 KB
testcase_07 AC 131 ms
41,400 KB
testcase_08 AC 118 ms
40,076 KB
testcase_09 RE -
testcase_10 AC 129 ms
41,256 KB
testcase_11 AC 131 ms
41,176 KB
testcase_12 AC 128 ms
41,084 KB
testcase_13 AC 133 ms
41,112 KB
testcase_14 AC 130 ms
41,220 KB
testcase_15 RE -
testcase_16 AC 127 ms
41,340 KB
testcase_17 AC 129 ms
41,324 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 114 ms
39,848 KB
testcase_21 AC 128 ms
41,124 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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