結果

問題 No.51 やる気の問題
ユーザー itezpaceitezpace
提出日時 2016-08-21 11:54:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 76,812 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-11-07 22:23:40
合計ジャッジ時間 6,500 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,616 KB
testcase_01 AC 144 ms
41,520 KB
testcase_02 AC 143 ms
41,544 KB
testcase_03 AC 141 ms
41,608 KB
testcase_04 AC 141 ms
41,528 KB
testcase_05 AC 144 ms
41,504 KB
testcase_06 AC 145 ms
41,612 KB
testcase_07 AC 141 ms
41,524 KB
testcase_08 AC 138 ms
41,364 KB
testcase_09 AC 133 ms
41,000 KB
testcase_10 AC 145 ms
41,372 KB
testcase_11 AC 141 ms
41,692 KB
testcase_12 AC 128 ms
41,012 KB
testcase_13 AC 140 ms
41,348 KB
testcase_14 AC 145 ms
41,604 KB
testcase_15 AC 133 ms
40,708 KB
testcase_16 AC 139 ms
41,408 KB
testcase_17 AC 138 ms
41,696 KB
testcase_18 AC 141 ms
41,348 KB
testcase_19 AC 143 ms
41,472 KB
testcase_20 AC 143 ms
41,576 KB
testcase_21 AC 137 ms
41,592 KB
testcase_22 AC 143 ms
41,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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