結果

問題 No.51 やる気の問題
ユーザー htensaihtensai
提出日時 2019-12-06 16:36:27
言語 Java
(openjdk 23)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 73,520 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-12-23 09:21:24
合計ジャッジ時間 6,568 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
39,808 KB
testcase_01 AC 144 ms
41,668 KB
testcase_02 AC 152 ms
41,220 KB
testcase_03 AC 139 ms
41,160 KB
testcase_04 AC 127 ms
39,964 KB
testcase_05 AC 145 ms
41,480 KB
testcase_06 AC 142 ms
41,152 KB
testcase_07 AC 149 ms
41,608 KB
testcase_08 AC 148 ms
41,180 KB
testcase_09 AC 152 ms
41,488 KB
testcase_10 AC 148 ms
41,360 KB
testcase_11 AC 150 ms
41,344 KB
testcase_12 AC 149 ms
41,524 KB
testcase_13 AC 147 ms
41,216 KB
testcase_14 AC 151 ms
41,436 KB
testcase_15 AC 152 ms
41,508 KB
testcase_16 AC 132 ms
40,244 KB
testcase_17 AC 130 ms
40,280 KB
testcase_18 AC 148 ms
41,280 KB
testcase_19 AC 152 ms
41,556 KB
testcase_20 AC 148 ms
41,296 KB
testcase_21 AC 146 ms
41,208 KB
testcase_22 AC 153 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

0