結果

問題 No.51 やる気の問題
ユーザー mustonmuston
提出日時 2016-05-19 15:49:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 633 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 73,800 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-10-06 10:17:09
合計ジャッジ時間 6,148 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,052 KB
testcase_01 AC 129 ms
40,868 KB
testcase_02 AC 126 ms
41,280 KB
testcase_03 AC 127 ms
41,124 KB
testcase_04 AC 127 ms
40,872 KB
testcase_05 AC 131 ms
41,556 KB
testcase_06 AC 130 ms
40,876 KB
testcase_07 AC 128 ms
41,060 KB
testcase_08 AC 128 ms
40,984 KB
testcase_09 AC 118 ms
39,872 KB
testcase_10 AC 129 ms
41,528 KB
testcase_11 AC 130 ms
41,148 KB
testcase_12 AC 130 ms
41,272 KB
testcase_13 AC 119 ms
39,872 KB
testcase_14 AC 132 ms
41,312 KB
testcase_15 AC 133 ms
41,028 KB
testcase_16 AC 128 ms
41,300 KB
testcase_17 AC 130 ms
41,120 KB
testcase_18 AC 132 ms
41,068 KB
testcase_19 AC 119 ms
39,908 KB
testcase_20 AC 129 ms
40,836 KB
testcase_21 AC 129 ms
41,124 KB
testcase_22 AC 134 ms
41,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
/*yukicoder No51 やる気の問題*/
class No51{
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    long w = scan.nextInt();  //仕事の量
    long d = scan.nextInt();  //残りの日数
    long worked = 0;  //一日に終わらせる仕事量
    //仕事をする
    while(1<d){
      //その日にする仕事量を出す
      worked = w/(d*d);
      //仕事の量から終わらせた仕事を引く
      w -= worked;
      //残りの日数を1減らす
      d--;
    }
    //最後の日の仕事量を出力
    System.out.println(w);
  }
}
0