結果

問題 No.831 都市めぐり
ユーザー vwxyzvwxyz
提出日時 2024-04-07 22:37:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,227 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 11,776 KB
実行使用メモリ 137,064 KB
最終ジャッジ日時 2024-04-07 22:37:32
合計ジャッジ時間 6,781 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,112 KB
testcase_01 AC 27 ms
10,112 KB
testcase_02 AC 27 ms
10,112 KB
testcase_03 AC 26 ms
10,112 KB
testcase_04 AC 27 ms
10,112 KB
testcase_05 AC 28 ms
10,112 KB
testcase_06 AC 27 ms
10,112 KB
testcase_07 AC 31 ms
10,368 KB
testcase_08 AC 33 ms
10,624 KB
testcase_09 AC 30 ms
10,112 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 76 ms
16,228 KB
testcase_13 AC 72 ms
15,308 KB
testcase_14 AC 76 ms
16,228 KB
testcase_15 AC 488 ms
69,616 KB
testcase_16 AC 221 ms
34,396 KB
testcase_17 AC 594 ms
73,308 KB
testcase_18 AC 849 ms
92,012 KB
testcase_19 AC 1,189 ms
132,992 KB
testcase_20 AC 1,227 ms
137,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N=int(input())
if N==1:
    ans=0
else:
    queue=deque([x for x in range(2,N+1)])
    L=[1]
    R=[1]
    b=1
    while queue:
        if len(queue)==1:
            L.append(queue.pop())
            break
        if b:
            R.append(queue.pop())
            L.append(queue.pop())
        else:
            R.append(queue.popleft())
            L.append(queue.popleft())
        b^=1
    tour=L+R[::-1]
    ans=sum(a*b for a,b in zip(tour,tour[1:]))
print(ans)
0