結果

問題 No.831 都市めぐり
ユーザー miyaponmiyapon
提出日時 2019-05-24 22:05:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,119 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 112,656 KB
最終ジャッジ日時 2024-09-17 10:42:41
合計ジャッジ時間 5,819 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 35 ms
11,136 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 34 ms
11,136 KB
testcase_11 AC 35 ms
11,008 KB
testcase_12 AC 80 ms
16,000 KB
testcase_13 AC 72 ms
14,976 KB
testcase_14 AC 83 ms
15,872 KB
testcase_15 AC 485 ms
53,632 KB
testcase_16 AC 208 ms
28,544 KB
testcase_17 AC 545 ms
61,568 KB
testcase_18 AC 748 ms
76,800 KB
testcase_19 AC 1,062 ms
108,916 KB
testcase_20 AC 1,119 ms
112,656 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:
            ans += left[i]*right[i]

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

        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]

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

        ans += left[i]*right[i+1]
        ans += left[i+1]*right[i]

    print(ans)
0