結果

問題 No.51 やる気の問題
ユーザー kzyKTkzyKT
提出日時 2015-03-23 23:32:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 309 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 77,280 KB
実行使用メモリ 45,472 KB
最終ジャッジ日時 2024-06-29 00:26:17
合計ジャッジ時間 5,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,192 KB
testcase_01 AC 114 ms
39,924 KB
testcase_02 AC 103 ms
40,420 KB
testcase_03 AC 111 ms
40,132 KB
testcase_04 AC 96 ms
41,396 KB
testcase_05 AC 125 ms
43,844 KB
testcase_06 AC 109 ms
43,284 KB
testcase_07 AC 121 ms
43,632 KB
testcase_08 AC 117 ms
42,576 KB
testcase_09 AC 110 ms
45,308 KB
testcase_10 AC 115 ms
42,884 KB
testcase_11 AC 121 ms
42,684 KB
testcase_12 AC 121 ms
42,560 KB
testcase_13 AC 124 ms
43,868 KB
testcase_14 AC 126 ms
43,292 KB
testcase_15 AC 113 ms
45,472 KB
testcase_16 AC 118 ms
42,608 KB
testcase_17 AC 99 ms
41,824 KB
testcase_18 AC 116 ms
44,916 KB
testcase_19 AC 126 ms
44,952 KB
testcase_20 AC 110 ms
43,612 KB
testcase_21 AC 117 ms
41,612 KB
testcase_22 AC 125 ms
44,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.lang.*;
import java.util.*;
import java.math.*;

public class Main {
    static Scanner cin = new Scanner(System.in);
    public static void main(String[] args) {
	Long w=cin.nextLong();
	Long d=cin.nextLong();
	for(Long i=d; i>1; i--) w-=w/(i*i);
	System.out.println(w);
    }
}
0