結果

問題 No.51 やる気の問題
ユーザー takutakutakutaku
提出日時 2020-09-18 10:53:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 1,943 ms
コンパイル使用メモリ 73,700 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-06-22 07:48:51
合計ジャッジ時間 5,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,924 KB
testcase_01 AC 112 ms
53,660 KB
testcase_02 AC 114 ms
53,804 KB
testcase_03 AC 101 ms
54,392 KB
testcase_04 AC 110 ms
53,756 KB
testcase_05 AC 105 ms
52,936 KB
testcase_06 AC 112 ms
53,960 KB
testcase_07 AC 112 ms
53,980 KB
testcase_08 AC 98 ms
52,484 KB
testcase_09 AC 112 ms
53,844 KB
testcase_10 AC 120 ms
54,032 KB
testcase_11 AC 118 ms
53,752 KB
testcase_12 AC 102 ms
52,976 KB
testcase_13 AC 113 ms
53,820 KB
testcase_14 AC 118 ms
53,804 KB
testcase_15 AC 118 ms
52,592 KB
testcase_16 AC 117 ms
53,752 KB
testcase_17 AC 114 ms
53,884 KB
testcase_18 AC 118 ms
54,052 KB
testcase_19 AC 117 ms
53,820 KB
testcase_20 AC 116 ms
53,700 KB
testcase_21 AC 102 ms
52,536 KB
testcase_22 AC 104 ms
52,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	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--) {
            
            w = w - w/i/i;
            
        }
        
        System.out.println(w);
        
	}
}
0