結果

問題 No.831 都市めぐり
ユーザー miyaponmiyapon
提出日時 2019-05-24 21:59:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 725 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 112,668 KB
最終ジャッジ日時 2024-09-17 10:39:55
合計ジャッジ時間 5,639 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 33 ms
10,880 KB
testcase_08 AC 35 ms
11,136 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 83 ms
16,000 KB
testcase_15 AC 480 ms
53,632 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 731 ms
76,980 KB
testcase_19 AC 1,066 ms
109,008 KB
testcase_20 AC 1,114 ms
112,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

left = N//2
right = N - left

A = [i+1 for i in range(N)]
left = A[:N//2]
right = sorted(A[- N//2:], reverse=True)

ans = 0
len_left = len(left)
if len_left == len(right):
    for i in range(len_left):
        if i == 0 or i == len_left - 1:
            ans += left[i]*right[i]

        if i != len_left - 1:
            ans += left[i]*right[i+1]
            ans += left[i+1]*right[i]

    print(ans)
else:
    for i in range(len_left):
        if i == 0:
            ans += left[0]*right[0]
        elif i == len_left - 1:
            ans += left[i]*right[i+1]
            ans += right[i]*right[i+1]
        else:
            ans += left[i]*right[i+1]
            ans += left[i+1]*right[i]

    print(ans)
0