結果

問題 No.51 やる気の問題
ユーザー m2543315647m2543315647
提出日時 2015-05-22 16:38:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 236 bytes
コンパイル時間 3,795 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-07-06 04:44:54
合計ジャッジ時間 6,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
52,524 KB
testcase_01 AC 110 ms
53,804 KB
testcase_02 AC 111 ms
53,900 KB
testcase_03 AC 114 ms
53,864 KB
testcase_04 AC 118 ms
54,188 KB
testcase_05 AC 118 ms
53,988 KB
testcase_06 AC 116 ms
53,844 KB
testcase_07 AC 120 ms
53,960 KB
testcase_08 AC 126 ms
54,184 KB
testcase_09 AC 115 ms
53,960 KB
testcase_10 AC 117 ms
53,728 KB
testcase_11 AC 108 ms
52,972 KB
testcase_12 AC 105 ms
53,036 KB
testcase_13 AC 122 ms
53,940 KB
testcase_14 AC 106 ms
52,960 KB
testcase_15 AC 117 ms
53,856 KB
testcase_16 AC 115 ms
54,160 KB
testcase_17 AC 120 ms
53,748 KB
testcase_18 AC 132 ms
53,832 KB
testcase_19 AC 118 ms
54,000 KB
testcase_20 AC 117 ms
53,740 KB
testcase_21 AC 104 ms
52,932 KB
testcase_22 AC 132 ms
53,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No51 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int w=sc.nextInt();
		for(long d=sc.nextInt();d>1&&w>1;d--){
			w-=w/(d*d);}
		System.out.println(w);
	}
}
0