結果

問題 No.1180 無限和
ユーザー 👑 hitonanodehitonanode
提出日時 2020-08-21 22:23:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 571 ms / 1,000 ms
コード長 76 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,420 KB
最終ジャッジ日時 2024-04-23 06:27:41
合計ジャッジ時間 24,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
43,900 KB
testcase_01 AC 538 ms
44,012 KB
testcase_02 AC 538 ms
44,420 KB
testcase_03 AC 537 ms
43,896 KB
testcase_04 AC 537 ms
44,288 KB
testcase_05 AC 544 ms
43,904 KB
testcase_06 AC 533 ms
44,160 KB
testcase_07 AC 545 ms
44,008 KB
testcase_08 AC 533 ms
44,020 KB
testcase_09 AC 536 ms
44,032 KB
testcase_10 AC 544 ms
44,016 KB
testcase_11 AC 541 ms
44,288 KB
testcase_12 AC 543 ms
43,900 KB
testcase_13 AC 539 ms
44,416 KB
testcase_14 AC 545 ms
44,420 KB
testcase_15 AC 540 ms
44,020 KB
testcase_16 AC 546 ms
44,396 KB
testcase_17 AC 571 ms
44,012 KB
testcase_18 AC 532 ms
44,032 KB
testcase_19 AC 542 ms
44,284 KB
testcase_20 AC 545 ms
44,408 KB
testcase_21 AC 537 ms
44,268 KB
testcase_22 AC 542 ms
44,028 KB
testcase_23 AC 539 ms
44,404 KB
testcase_24 AC 544 ms
44,036 KB
testcase_25 AC 537 ms
44,028 KB
testcase_26 AC 543 ms
44,032 KB
testcase_27 AC 535 ms
44,412 KB
testcase_28 AC 554 ms
44,156 KB
testcase_29 AC 546 ms
44,036 KB
testcase_30 AC 554 ms
44,160 KB
testcase_31 AC 541 ms
44,160 KB
testcase_32 AC 545 ms
44,144 KB
testcase_33 AC 534 ms
44,012 KB
testcase_34 AC 543 ms
44,276 KB
testcase_35 AC 543 ms
44,272 KB
testcase_36 AC 538 ms
44,020 KB
testcase_37 AC 545 ms
43,884 KB
testcase_38 AC 536 ms
44,408 KB
testcase_39 AC 547 ms
44,036 KB
testcase_40 AC 546 ms
44,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N = int(input())
print(int((np.pi * np.pi / 6) ** N / N))
0