結果

問題 No.1273 はじめのζ関数
ユーザー 遭難者遭難者
提出日時 2020-10-31 00:08:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 2,365 ms
コンパイル使用メモリ 77,828 KB
実行使用メモリ 41,800 KB
最終ジャッジ日時 2024-07-22 03:52:37
合計ジャッジ時間 12,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 228 ms
41,668 KB
testcase_03 WA -
testcase_04 AC 214 ms
41,764 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 223 ms
41,444 KB
testcase_08 WA -
testcase_09 AC 229 ms
41,356 KB
testcase_10 WA -
testcase_11 AC 216 ms
41,436 KB
testcase_12 AC 216 ms
41,708 KB
testcase_13 WA -
testcase_14 AC 213 ms
41,712 KB
testcase_15 AC 227 ms
41,384 KB
testcase_16 AC 223 ms
41,284 KB
testcase_17 AC 221 ms
41,644 KB
testcase_18 AC 226 ms
41,372 KB
testcase_19 AC 226 ms
41,472 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 180 ms
40,988 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 , 6) / (i * Math.pow(i + 1 , x));
			if(u > 0) q += u;
		}
		if(q - (int)q > 0.95) q++;
		if(q - (int)q < 0.05) q--;
		ou.println((int)q);
		sc.close();
		ou.flush();
	}
}
0