結果

問題 No.523 LED
ユーザー pluto77pluto77
提出日時 2017-06-15 08:03:18
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 720 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 1,717 ms
コンパイル使用メモリ 76,716 KB
実行使用メモリ 78,072 KB
最終ジャッジ日時 2024-09-25 01:45:09
合計ジャッジ時間 6,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
75,512 KB
testcase_01 AC 73 ms
75,688 KB
testcase_02 AC 103 ms
77,336 KB
testcase_03 AC 68 ms
75,656 KB
testcase_04 AC 71 ms
75,304 KB
testcase_05 AC 720 ms
77,852 KB
testcase_06 AC 69 ms
75,680 KB
testcase_07 AC 69 ms
75,664 KB
testcase_08 AC 69 ms
75,808 KB
testcase_09 AC 69 ms
76,684 KB
testcase_10 AC 69 ms
75,296 KB
testcase_11 AC 74 ms
75,404 KB
testcase_12 AC 72 ms
75,828 KB
testcase_13 AC 192 ms
77,344 KB
testcase_14 AC 68 ms
75,532 KB
testcase_15 AC 70 ms
76,988 KB
testcase_16 AC 69 ms
75,668 KB
testcase_17 AC 70 ms
76,324 KB
testcase_18 AC 716 ms
77,880 KB
testcase_19 AC 291 ms
77,352 KB
testcase_20 AC 270 ms
78,072 KB
testcase_21 AC 550 ms
77,468 KB
testcase_22 AC 610 ms
77,328 KB
testcase_23 AC 607 ms
77,212 KB
testcase_24 AC 81 ms
77,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_523

n=int(raw_input())
res=1
for i in xrange(1,n+1):
 res*=i*(i*2-1)
 res%=10**9+7
print res
0