結果

問題 No.831 都市めぐり
ユーザー kamojirokamojiro
提出日時 2019-05-24 22:10:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 636 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 94,720 KB
最終ジャッジ日時 2024-09-17 10:46:44
合計ジャッジ時間 5,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,880 KB
testcase_01 AC 36 ms
53,376 KB
testcase_02 AC 40 ms
53,376 KB
testcase_03 AC 37 ms
53,376 KB
testcase_04 AC 38 ms
54,060 KB
testcase_05 AC 37 ms
53,760 KB
testcase_06 AC 40 ms
59,776 KB
testcase_07 AC 43 ms
61,440 KB
testcase_08 AC 44 ms
61,696 KB
testcase_09 AC 41 ms
59,904 KB
testcase_10 AC 44 ms
61,696 KB
testcase_11 AC 44 ms
61,824 KB
testcase_12 AC 448 ms
69,760 KB
testcase_13 AC 269 ms
69,120 KB
testcase_14 AC 538 ms
68,864 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int( input())
if N == 1:
    ans = 0
else:
    ans = 0
    d = deque()
    t = N//2
    if N%2 == 0:
        for i in range(t):
            if i%2 == 0:
                d.appendleft(t-i)
                d.append(t+1+i)
            else:
                d.appendleft(t+1+i)
                d.append(t-i)
    else:
        d.append(t+1)
        for i in range(t):
            if i%2 == 0:
                d.appendleft(t-i)
                d.append(t+i+2)
            else:
                d.appendleft(t+i+2)
                d.append(t-i)
    for i in range(N):
        ans += d[i]*d[(i+1)%N]
print(ans)
0