結果

問題 No.831 都市めぐり
ユーザー vwxyzvwxyz
提出日時 2024-04-07 22:37:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 923 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 145,244 KB
最終ジャッジ日時 2024-10-01 04:48:17
合計ジャッジ時間 4,985 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 25 ms
11,008 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 29 ms
11,008 KB
testcase_08 AC 30 ms
11,264 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 30 ms
11,264 KB
testcase_11 AC 29 ms
11,264 KB
testcase_12 AC 65 ms
17,388 KB
testcase_13 AC 63 ms
16,080 KB
testcase_14 AC 64 ms
17,388 KB
testcase_15 AC 380 ms
69,892 KB
testcase_16 AC 174 ms
34,992 KB
testcase_17 AC 472 ms
77,732 KB
testcase_18 AC 595 ms
97,444 KB
testcase_19 AC 875 ms
141,084 KB
testcase_20 AC 923 ms
145,244 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