結果
問題 | No.234 めぐるはめぐる (4) |
ユーザー | 🍡yurahuna |
提出日時 | 2017-02-24 14:24:58 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 12 ms / 1,000 ms |
コード長 | 758 bytes |
コンパイル時間 | 121 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-10 22:24:36 |
合計ジャッジ時間 | 726 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,816 KB |
testcase_01 | AC | 12 ms
6,944 KB |
ソースコード
# -*- coding: utf-8 -*- # from graphillion import GraphSet # # MAX_N = 12 # for n in xrange(1, MAX_N + 1): # universe = [] # r = 1 # t = 1 # m = (n + 1) * (n + 2) / 2 # for i in xrange(1, m + 1): # if i != t: # universe.append((i, i + 1)) # if i + r <= m: # universe.append((i, i + r)) # if i + r + 1 <= m: # universe.append((i, i + r + 1)) # if i == t: # r += 1 # t += r # GraphSet.set_universe(universe) # print GraphSet.cycles().len() ans = [ 1, 11, 110, 2402, 128967, 16767653, 5436906668, 4406952731948, 8819634719356421, 43329348004927734247, 522235268182347360718818, 15436131339319739257518081878] n = input() print ans[n - 1]