結果

問題 No.1273 はじめのζ関数
ユーザー 遭難者遭難者
提出日時 2020-10-30 22:43:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 433 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 54,936 KB
最終ジャッジ日時 2024-07-22 02:17:03
合計ジャッジ時間 12,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 223 ms
54,360 KB
testcase_01 AC 234 ms
54,384 KB
testcase_02 AC 241 ms
54,212 KB
testcase_03 AC 226 ms
54,204 KB
testcase_04 AC 230 ms
54,104 KB
testcase_05 AC 230 ms
54,356 KB
testcase_06 AC 223 ms
53,900 KB
testcase_07 AC 231 ms
54,240 KB
testcase_08 AC 225 ms
54,128 KB
testcase_09 AC 239 ms
54,268 KB
testcase_10 AC 224 ms
54,220 KB
testcase_11 AC 223 ms
54,392 KB
testcase_12 AC 228 ms
54,020 KB
testcase_13 AC 226 ms
54,184 KB
testcase_14 AC 227 ms
54,520 KB
testcase_15 AC 239 ms
54,344 KB
testcase_16 AC 237 ms
54,224 KB
testcase_17 AC 231 ms
54,028 KB
testcase_18 AC 237 ms
54,228 KB
testcase_19 AC 238 ms
54,392 KB
testcase_20 WA -
testcase_21 AC 218 ms
53,980 KB
testcase_22 AC 228 ms
54,188 KB
testcase_23 AC 229 ms
54,168 KB
testcase_24 AC 228 ms
54,316 KB
testcase_25 AC 223 ms
54,688 KB
testcase_26 AC 212 ms
54,332 KB
testcase_27 AC 223 ms
54,260 KB
testcase_28 AC 214 ms
54,288 KB
testcase_29 AC 217 ms
54,240 KB
testcase_30 AC 217 ms
54,036 KB
testcase_31 AC 231 ms
54,128 KB
testcase_32 AC 218 ms
54,244 KB
testcase_33 AC 225 ms
54,616 KB
testcase_34 AC 217 ms
54,008 KB
testcase_35 AC 234 ms
54,284 KB
testcase_36 AC 217 ms
54,332 KB
testcase_37 AC 217 ms
53,984 KB
testcase_38 AC 219 ms
54,060 KB
testcase_39 AC 214 ms
54,280 KB
testcase_40 AC 190 ms
54,180 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;
		}
		ou.println((int)q);
		sc.close();
		ou.flush();
	}
}
0