結果

問題 No.1273 はじめのζ関数
ユーザー 遭難者遭難者
提出日時 2020-10-31 00:29:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 2,527 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 54,912 KB
最終ジャッジ日時 2024-07-22 04:06:38
合計ジャッジ時間 12,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
53,088 KB
testcase_01 AC 223 ms
54,348 KB
testcase_02 AC 234 ms
54,096 KB
testcase_03 AC 204 ms
52,928 KB
testcase_04 AC 214 ms
54,208 KB
testcase_05 AC 217 ms
53,960 KB
testcase_06 AC 220 ms
54,272 KB
testcase_07 AC 223 ms
54,064 KB
testcase_08 AC 226 ms
54,072 KB
testcase_09 AC 238 ms
54,912 KB
testcase_10 AC 215 ms
54,416 KB
testcase_11 AC 217 ms
54,060 KB
testcase_12 AC 229 ms
53,984 KB
testcase_13 AC 223 ms
54,140 KB
testcase_14 AC 219 ms
53,996 KB
testcase_15 AC 226 ms
53,828 KB
testcase_16 AC 235 ms
53,992 KB
testcase_17 AC 226 ms
54,004 KB
testcase_18 AC 231 ms
54,160 KB
testcase_19 AC 232 ms
54,376 KB
testcase_20 AC 225 ms
54,104 KB
testcase_21 AC 209 ms
54,284 KB
testcase_22 AC 221 ms
54,168 KB
testcase_23 AC 219 ms
54,116 KB
testcase_24 AC 221 ms
54,020 KB
testcase_25 AC 217 ms
54,424 KB
testcase_26 AC 209 ms
54,264 KB
testcase_27 AC 208 ms
54,220 KB
testcase_28 AC 210 ms
54,172 KB
testcase_29 AC 206 ms
53,996 KB
testcase_30 AC 207 ms
54,076 KB
testcase_31 AC 216 ms
54,172 KB
testcase_32 AC 212 ms
53,920 KB
testcase_33 AC 218 ms
54,136 KB
testcase_34 AC 208 ms
54,400 KB
testcase_35 AC 217 ms
54,416 KB
testcase_36 AC 212 ms
54,236 KB
testcase_37 AC 202 ms
53,124 KB
testcase_38 AC 210 ms
54,064 KB
testcase_39 AC 212 ms
54,384 KB
testcase_40 AC 187 ms
54,388 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++){
			q += Math.pow(10 , 6) / (i * Math.pow(i + 1 , x));
		}
		if(x == 1) ou.println((int)Math.pow(10 , 6));
		else ou.println((int)q);
		sc.close();
		ou.flush();
	}
}
0