結果
| 問題 |
No.234 めぐるはめぐる (4)
|
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-20 21:08:09 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 297 bytes |
| コンパイル時間 | 272 ms |
| コンパイル使用メモリ | 82,420 KB |
| 実行使用メモリ | 53,672 KB |
| 最終ジャッジ日時 | 2025-03-20 21:08:55 |
| 合計ジャッジ時間 | 658 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 2 |
ソースコード
def main():
# The number of possible simple polygons for each N up to 12
ans = [
0, 1, 11, 402, 33777, 128967, 2053792, 26917543, 196907899,
932563073, 3503558472, 11994549704, 41672426965
]
N = int(input())
print(ans[N])
if __name__ == "__main__":
main()
lam6er