結果

問題 No.51 やる気の問題
ユーザー htensaihtensai
提出日時 2019-12-06 16:36:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 3,454 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 41,992 KB
最終ジャッジ日時 2024-06-02 11:59:48
合計ジャッジ時間 6,115 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,112 KB
testcase_01 AC 111 ms
41,368 KB
testcase_02 AC 118 ms
41,440 KB
testcase_03 AC 114 ms
41,160 KB
testcase_04 AC 118 ms
41,268 KB
testcase_05 AC 106 ms
41,392 KB
testcase_06 AC 118 ms
41,592 KB
testcase_07 AC 104 ms
41,516 KB
testcase_08 AC 116 ms
41,488 KB
testcase_09 AC 124 ms
41,532 KB
testcase_10 AC 118 ms
41,836 KB
testcase_11 AC 114 ms
41,564 KB
testcase_12 AC 121 ms
41,720 KB
testcase_13 AC 114 ms
41,264 KB
testcase_14 AC 119 ms
41,956 KB
testcase_15 AC 120 ms
41,588 KB
testcase_16 AC 119 ms
41,260 KB
testcase_17 AC 124 ms
41,260 KB
testcase_18 AC 110 ms
41,588 KB
testcase_19 AC 113 ms
41,648 KB
testcase_20 AC 121 ms
41,500 KB
testcase_21 AC 125 ms
41,992 KB
testcase_22 AC 119 ms
41,388 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