結果

問題 No.51 やる気の問題
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-14 20:35:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 256 bytes
コンパイル時間 3,056 ms
コンパイル使用メモリ 73,820 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-06-02 08:55:36
合計ジャッジ時間 6,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,920 KB
testcase_01 AC 111 ms
40,632 KB
testcase_02 AC 118 ms
41,108 KB
testcase_03 AC 102 ms
40,032 KB
testcase_04 AC 120 ms
41,484 KB
testcase_05 AC 114 ms
40,776 KB
testcase_06 AC 110 ms
40,164 KB
testcase_07 AC 115 ms
41,332 KB
testcase_08 AC 119 ms
41,304 KB
testcase_09 AC 108 ms
39,740 KB
testcase_10 AC 121 ms
39,876 KB
testcase_11 AC 121 ms
41,172 KB
testcase_12 AC 119 ms
41,116 KB
testcase_13 AC 135 ms
41,284 KB
testcase_14 AC 111 ms
41,384 KB
testcase_15 AC 122 ms
41,024 KB
testcase_16 AC 121 ms
41,192 KB
testcase_17 AC 108 ms
40,228 KB
testcase_18 AC 124 ms
41,028 KB
testcase_19 AC 123 ms
41,096 KB
testcase_20 AC 122 ms
41,080 KB
testcase_21 AC 121 ms
41,228 KB
testcase_22 AC 119 ms
39,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No51 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long W = sc.nextInt();
		long D = sc.nextInt();
		while(D != 1) {
			W -= (W/(D*D));
			D--;
		}
		System.out.println(W);
	}
}
0