結果

問題 No.51 やる気の問題
ユーザー Mcpu3Mcpu3
提出日時 2018-06-23 16:49:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-06-30 18:28:43
合計ジャッジ時間 6,131 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,000 KB
testcase_01 AC 129 ms
54,004 KB
testcase_02 AC 130 ms
53,892 KB
testcase_03 AC 128 ms
54,148 KB
testcase_04 AC 117 ms
53,000 KB
testcase_05 AC 135 ms
54,168 KB
testcase_06 AC 133 ms
54,240 KB
testcase_07 AC 133 ms
54,064 KB
testcase_08 AC 132 ms
54,132 KB
testcase_09 AC 133 ms
54,408 KB
testcase_10 AC 131 ms
54,216 KB
testcase_11 AC 131 ms
54,100 KB
testcase_12 AC 132 ms
54,000 KB
testcase_13 AC 132 ms
54,216 KB
testcase_14 AC 131 ms
53,956 KB
testcase_15 AC 134 ms
54,016 KB
testcase_16 AC 132 ms
54,104 KB
testcase_17 AC 117 ms
52,912 KB
testcase_18 AC 137 ms
54,212 KB
testcase_19 AC 134 ms
54,108 KB
testcase_20 AC 133 ms
54,136 KB
testcase_21 AC 131 ms
53,996 KB
testcase_22 AC 135 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no51{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		long d,w,i;
		w=stdIn.nextLong();
		d=stdIn.nextLong();
		for(i=d;i>1;i--) w-=w/(i*i);
		System.out.print(w);
	}
}
0