結果

問題 No.51 やる気の問題
ユーザー htensaihtensai
提出日時 2019-12-06 14:07:16
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 335 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 41,956 KB
最終ジャッジ日時 2024-06-02 09:21:32
合計ジャッジ時間 5,309 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,928 KB
testcase_01 AC 102 ms
40,292 KB
testcase_02 AC 104 ms
39,844 KB
testcase_03 AC 107 ms
40,040 KB
testcase_04 AC 116 ms
41,136 KB
testcase_05 RE -
testcase_06 AC 119 ms
41,400 KB
testcase_07 AC 109 ms
40,912 KB
testcase_08 AC 108 ms
40,384 KB
testcase_09 RE -
testcase_10 AC 117 ms
41,468 KB
testcase_11 AC 122 ms
41,540 KB
testcase_12 AC 120 ms
41,468 KB
testcase_13 AC 112 ms
41,044 KB
testcase_14 AC 128 ms
41,408 KB
testcase_15 RE -
testcase_16 AC 112 ms
40,396 KB
testcase_17 AC 124 ms
41,552 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 122 ms
41,368 KB
testcase_21 AC 119 ms
41,224 KB
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

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] = arr[i] - arr[i] / (i * i);
		}
		System.out.println(arr[1]);
   }
}

0