結果

問題 No.523 LED
ユーザー pluto77pluto77
提出日時 2017-06-15 08:03:18
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 748 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 77,564 KB
実行使用メモリ 78,388 KB
最終ジャッジ日時 2023-10-25 06:20:55
合計ジャッジ時間 7,359 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
76,240 KB
testcase_01 AC 75 ms
76,240 KB
testcase_02 AC 82 ms
78,384 KB
testcase_03 AC 74 ms
76,240 KB
testcase_04 AC 75 ms
76,240 KB
testcase_05 AC 744 ms
78,388 KB
testcase_06 AC 74 ms
76,240 KB
testcase_07 AC 74 ms
76,240 KB
testcase_08 AC 74 ms
76,240 KB
testcase_09 AC 75 ms
77,544 KB
testcase_10 AC 74 ms
76,240 KB
testcase_11 AC 76 ms
76,240 KB
testcase_12 AC 75 ms
76,240 KB
testcase_13 AC 202 ms
78,384 KB
testcase_14 AC 75 ms
76,240 KB
testcase_15 AC 77 ms
77,544 KB
testcase_16 AC 75 ms
76,240 KB
testcase_17 AC 76 ms
77,544 KB
testcase_18 AC 748 ms
78,388 KB
testcase_19 AC 311 ms
78,384 KB
testcase_20 AC 284 ms
78,384 KB
testcase_21 AC 575 ms
78,388 KB
testcase_22 AC 636 ms
78,388 KB
testcase_23 AC 641 ms
78,388 KB
testcase_24 AC 85 ms
78,384 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