結果

問題 No.51 やる気の問題
ユーザー htensaihtensai
提出日時 2019-12-06 14:07:16
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 335 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 73,696 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-12-23 05:15:43
合計ジャッジ時間 5,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
52,932 KB
testcase_01 AC 105 ms
52,648 KB
testcase_02 AC 117 ms
53,796 KB
testcase_03 AC 105 ms
52,812 KB
testcase_04 AC 118 ms
52,956 KB
testcase_05 RE -
testcase_06 AC 107 ms
52,684 KB
testcase_07 AC 119 ms
53,940 KB
testcase_08 AC 102 ms
52,732 KB
testcase_09 RE -
testcase_10 AC 116 ms
54,220 KB
testcase_11 AC 114 ms
53,756 KB
testcase_12 AC 112 ms
53,796 KB
testcase_13 AC 117 ms
52,996 KB
testcase_14 AC 118 ms
53,932 KB
testcase_15 RE -
testcase_16 AC 114 ms
53,892 KB
testcase_17 AC 106 ms
53,356 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 116 ms
54,172 KB
testcase_21 AC 116 ms
53,924 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