結果

問題 No.51 やる気の問題
ユーザー fukuseifukusei
提出日時 2017-05-23 00:31:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-09-19 10:29:02
合計ジャッジ時間 5,350 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,128 KB
testcase_01 AC 104 ms
52,548 KB
testcase_02 AC 107 ms
52,628 KB
testcase_03 AC 105 ms
52,780 KB
testcase_04 AC 118 ms
54,264 KB
testcase_05 AC 115 ms
54,036 KB
testcase_06 AC 116 ms
53,700 KB
testcase_07 AC 102 ms
52,912 KB
testcase_08 AC 118 ms
53,952 KB
testcase_09 AC 106 ms
52,948 KB
testcase_10 AC 116 ms
53,968 KB
testcase_11 AC 116 ms
53,944 KB
testcase_12 AC 119 ms
54,012 KB
testcase_13 AC 120 ms
54,128 KB
testcase_14 AC 115 ms
53,736 KB
testcase_15 AC 119 ms
54,272 KB
testcase_16 AC 115 ms
53,940 KB
testcase_17 AC 103 ms
52,668 KB
testcase_18 AC 112 ms
52,652 KB
testcase_19 AC 125 ms
53,868 KB
testcase_20 AC 109 ms
52,672 KB
testcase_21 AC 120 ms
53,856 KB
testcase_22 AC 121 ms
53,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class test{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int W = sc.nextInt();
		long D = sc.nextInt();
		
		if(D != 1){
			for(long i=D; i>1; i--){
				W -= W / (i * i);
				
			}
		}
		System.out.println(W);
	}
}
0