結果

問題 No.831 都市めぐり
ユーザー kuuso1kuuso1
提出日時 2019-05-24 22:05:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 854 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 105,652 KB
最終ジャッジ日時 2024-09-17 10:42:54
合計ジャッジ時間 11,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 35 ms
10,880 KB
testcase_08 AC 39 ms
11,008 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 41 ms
11,008 KB
testcase_11 AC 40 ms
11,136 KB
testcase_12 AC 152 ms
15,488 KB
testcase_13 AC 133 ms
14,720 KB
testcase_14 AC 153 ms
15,488 KB
testcase_15 AC 1,080 ms
50,548 KB
testcase_16 AC 481 ms
27,008 KB
testcase_17 AC 1,343 ms
58,112 KB
testcase_18 AC 1,623 ms
72,320 KB
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from collections import deque
##  input functions for me
def ria(sep = ''):
    if sep == '' :
        return list(map(int, input().split())) 
    else: return list(map(int, input().split(sep)))
def rsa(sep = ''):
    if sep == '' :
        return input().split() 
    else: return input().split(sep)
def ri(): return int(input())
def rd(): return float(input())
def rs(): return input()
##

## main ##
N = ri()
L = deque()
for i in range(2, N + 1): L.append(i)
R = deque()
R.append(1)
c = 0
while len(L) > 0 :
    if c == 0: R.append(L.pop())
    elif c == 1: R.appendleft(L.pop())
    elif c == 2: R.append(L.popleft())
    elif c == 3: R.appendleft(L.popleft())
    c += 1
    if c >= 4 : c -= 4

sc = 0
ll = list(R)
#print(ll)
for i in range(N):
    sc += ll[i] * ll[(i + 1) % N] + (ll[(i + 1) % N] - ll[i])
print (sc)









0