結果

問題 No.1273 はじめのζ関数
ユーザー 遭難者遭難者
提出日時 2020-10-31 00:13:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 2,680 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-07-22 03:56:46
合計ジャッジ時間 12,716 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
54,004 KB
testcase_01 AC 224 ms
54,120 KB
testcase_02 AC 233 ms
53,928 KB
testcase_03 AC 220 ms
53,960 KB
testcase_04 AC 226 ms
54,164 KB
testcase_05 AC 224 ms
53,864 KB
testcase_06 AC 224 ms
54,044 KB
testcase_07 AC 224 ms
54,248 KB
testcase_08 AC 226 ms
41,376 KB
testcase_09 AC 236 ms
41,244 KB
testcase_10 AC 222 ms
41,032 KB
testcase_11 AC 226 ms
41,112 KB
testcase_12 AC 225 ms
41,316 KB
testcase_13 AC 220 ms
41,000 KB
testcase_14 AC 226 ms
41,052 KB
testcase_15 AC 238 ms
41,096 KB
testcase_16 AC 239 ms
41,356 KB
testcase_17 AC 223 ms
41,372 KB
testcase_18 AC 237 ms
41,480 KB
testcase_19 AC 236 ms
41,472 KB
testcase_20 WA -
testcase_21 AC 208 ms
41,052 KB
testcase_22 AC 220 ms
41,244 KB
testcase_23 AC 214 ms
41,260 KB
testcase_24 AC 218 ms
41,288 KB
testcase_25 AC 221 ms
41,240 KB
testcase_26 AC 214 ms
41,284 KB
testcase_27 AC 214 ms
41,092 KB
testcase_28 AC 212 ms
41,312 KB
testcase_29 AC 215 ms
41,228 KB
testcase_30 AC 213 ms
41,160 KB
testcase_31 AC 209 ms
40,172 KB
testcase_32 AC 214 ms
41,264 KB
testcase_33 AC 222 ms
41,456 KB
testcase_34 AC 214 ms
41,220 KB
testcase_35 AC 222 ms
41,156 KB
testcase_36 AC 214 ms
41,284 KB
testcase_37 AC 202 ms
40,060 KB
testcase_38 AC 213 ms
41,256 KB
testcase_39 AC 213 ms
41,056 KB
testcase_40 AC 175 ms
40,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		int x = Integer.parseInt(sc.next()) - 1;
		double q = 0;
		for(int i = 1 ; i <= Math.pow(10 , 6) ; i++){
			double u = Math.pow(10 , 9) / (i * Math.pow(i + 1 , x));
			if(u > 0) q += u;
		}
		if(q - (int)q < 0.01) q--;
		if(q - (int)q > 0.99) q++;
		q /= 1000;
		ou.println((int)q);
		sc.close();
		ou.flush();
	}
}
0