結果

問題 No.51 やる気の問題
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-13 18:14:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 77,320 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-11-30 01:34:27
合計ジャッジ時間 5,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,036 KB
testcase_01 AC 127 ms
41,492 KB
testcase_02 AC 126 ms
41,096 KB
testcase_03 AC 127 ms
41,084 KB
testcase_04 AC 128 ms
41,104 KB
testcase_05 AC 129 ms
41,228 KB
testcase_06 AC 119 ms
39,804 KB
testcase_07 AC 125 ms
40,908 KB
testcase_08 AC 122 ms
41,088 KB
testcase_09 AC 126 ms
40,924 KB
testcase_10 AC 121 ms
39,772 KB
testcase_11 AC 129 ms
41,188 KB
testcase_12 AC 127 ms
40,912 KB
testcase_13 AC 131 ms
41,320 KB
testcase_14 AC 124 ms
41,060 KB
testcase_15 AC 129 ms
41,224 KB
testcase_16 AC 122 ms
39,804 KB
testcase_17 AC 124 ms
41,104 KB
testcase_18 AC 115 ms
40,220 KB
testcase_19 AC 118 ms
40,212 KB
testcase_20 AC 132 ms
41,380 KB
testcase_21 AC 128 ms
41,092 KB
testcase_22 AC 127 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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