結果

問題 No.51 やる気の問題
ユーザー kzyKTkzyKT
提出日時 2015-03-23 23:29:07
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 304 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-06-29 00:25:45
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,092 KB
testcase_01 AC 123 ms
41,120 KB
testcase_02 AC 118 ms
40,132 KB
testcase_03 AC 118 ms
41,400 KB
testcase_04 AC 125 ms
41,060 KB
testcase_05 RE -
testcase_06 AC 122 ms
41,380 KB
testcase_07 AC 110 ms
40,688 KB
testcase_08 AC 127 ms
40,980 KB
testcase_09 RE -
testcase_10 AC 127 ms
41,096 KB
testcase_11 AC 125 ms
41,036 KB
testcase_12 AC 126 ms
41,492 KB
testcase_13 AC 104 ms
39,668 KB
testcase_14 AC 126 ms
41,488 KB
testcase_15 RE -
testcase_16 AC 113 ms
40,188 KB
testcase_17 AC 124 ms
41,412 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 114 ms
40,068 KB
testcase_21 AC 113 ms
39,920 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

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) {
	int w=cin.nextInt();
	int d=cin.nextInt();
	for(int i=d; i>1; i--) w-=w/(i*i);
	System.out.println(w);
    }
}
0