結果

問題 No.51 やる気の問題
ユーザー fukuseifukusei
提出日時 2017-05-17 16:37:46
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 270 bytes
コンパイル時間 3,193 ms
コンパイル使用メモリ 74,028 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-09-17 21:00:20
合計ジャッジ時間 7,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,144 KB
testcase_01 AC 130 ms
41,048 KB
testcase_02 AC 131 ms
41,100 KB
testcase_03 AC 131 ms
41,036 KB
testcase_04 AC 119 ms
40,268 KB
testcase_05 RE -
testcase_06 AC 132 ms
41,340 KB
testcase_07 AC 132 ms
41,420 KB
testcase_08 AC 134 ms
41,104 KB
testcase_09 RE -
testcase_10 AC 130 ms
41,480 KB
testcase_11 AC 136 ms
41,084 KB
testcase_12 AC 129 ms
40,920 KB
testcase_13 AC 128 ms
40,808 KB
testcase_14 AC 120 ms
40,236 KB
testcase_15 RE -
testcase_16 AC 120 ms
40,196 KB
testcase_17 AC 128 ms
41,216 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 128 ms
41,220 KB
testcase_21 AC 127 ms
41,236 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*; 

public class test {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = 0;
			
		for(int i=b; i>1; i--){
			a -= a / (i * i);
		}
		System.out.println(a);
	}
}
0