結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 35 ms
10,880 KB
testcase_08 AC 41 ms
11,264 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 41 ms
10,880 KB
testcase_11 AC 40 ms
11,136 KB
testcase_12 AC 152 ms
15,232 KB
testcase_13 AC 132 ms
14,464 KB
testcase_14 AC 158 ms
15,488 KB
testcase_15 AC 1,070 ms
50,528 KB
testcase_16 AC 461 ms
27,136 KB
testcase_17 AC 1,305 ms
58,208 KB
testcase_18 AC 1,638 ms
72,204 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()
if N == 1:
    print (0)
    exit(0)

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