結果

問題 No.1180 無限和
ユーザー chielochielo
提出日時 2020-08-22 02:36:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 77 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-04-23 06:50:59
合計ジャッジ時間 3,125 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,084 KB
testcase_01 AC 40 ms
52,064 KB
testcase_02 AC 43 ms
54,284 KB
testcase_03 AC 43 ms
52,656 KB
testcase_04 AC 40 ms
53,692 KB
testcase_05 AC 38 ms
53,200 KB
testcase_06 AC 40 ms
53,140 KB
testcase_07 AC 38 ms
53,672 KB
testcase_08 AC 40 ms
54,016 KB
testcase_09 AC 39 ms
52,888 KB
testcase_10 AC 39 ms
52,788 KB
testcase_11 AC 39 ms
52,652 KB
testcase_12 AC 39 ms
53,136 KB
testcase_13 AC 38 ms
52,268 KB
testcase_14 AC 39 ms
52,908 KB
testcase_15 AC 40 ms
53,392 KB
testcase_16 AC 38 ms
52,376 KB
testcase_17 AC 40 ms
53,612 KB
testcase_18 AC 39 ms
53,472 KB
testcase_19 AC 38 ms
52,616 KB
testcase_20 AC 38 ms
53,132 KB
testcase_21 AC 38 ms
52,900 KB
testcase_22 AC 39 ms
52,264 KB
testcase_23 AC 39 ms
52,980 KB
testcase_24 AC 39 ms
52,436 KB
testcase_25 AC 38 ms
52,540 KB
testcase_26 AC 39 ms
52,920 KB
testcase_27 AC 38 ms
52,400 KB
testcase_28 AC 39 ms
52,848 KB
testcase_29 AC 39 ms
52,924 KB
testcase_30 AC 38 ms
52,384 KB
testcase_31 AC 39 ms
52,616 KB
testcase_32 AC 38 ms
52,068 KB
testcase_33 AC 38 ms
52,452 KB
testcase_34 AC 39 ms
52,584 KB
testcase_35 AC 39 ms
52,184 KB
testcase_36 AC 39 ms
53,532 KB
testcase_37 AC 38 ms
52,836 KB
testcase_38 AC 38 ms
53,344 KB
testcase_39 AC 38 ms
53,392 KB
testcase_40 AC 39 ms
52,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import pi
n = int(input())
print(int(pi ** (2 * n) / (n * 6 ** n)))
0