結果

問題 No.2519 Coins in Array
ユーザー 👑 rin204rin204
提出日時 2023-10-27 21:44:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,196 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 120,084 KB
最終ジャッジ日時 2024-09-25 13:50:08
合計ジャッジ時間 7,894 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,268 KB
testcase_01 AC 39 ms
52,728 KB
testcase_02 AC 39 ms
52,628 KB
testcase_03 AC 39 ms
54,372 KB
testcase_04 AC 39 ms
52,768 KB
testcase_05 AC 37 ms
53,224 KB
testcase_06 AC 38 ms
53,368 KB
testcase_07 WA -
testcase_08 AC 40 ms
53,200 KB
testcase_09 WA -
testcase_10 AC 38 ms
53,416 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 38 ms
53,548 KB
testcase_15 AC 39 ms
54,108 KB
testcase_16 AC 42 ms
52,884 KB
testcase_17 AC 37 ms
53,548 KB
testcase_18 AC 38 ms
53,856 KB
testcase_19 WA -
testcase_20 AC 38 ms
53,132 KB
testcase_21 AC 38 ms
53,020 KB
testcase_22 AC 41 ms
52,464 KB
testcase_23 AC 164 ms
119,976 KB
testcase_24 AC 169 ms
120,084 KB
testcase_25 WA -
testcase_26 AC 37 ms
53,412 KB
testcase_27 AC 172 ms
106,456 KB
testcase_28 AC 173 ms
106,844 KB
testcase_29 AC 171 ms
106,736 KB
testcase_30 AC 164 ms
113,440 KB
testcase_31 AC 80 ms
79,132 KB
testcase_32 AC 116 ms
94,748 KB
testcase_33 AC 136 ms
104,888 KB
testcase_34 AC 97 ms
88,336 KB
testcase_35 AC 139 ms
101,084 KB
testcase_36 AC 91 ms
84,588 KB
testcase_37 AC 75 ms
78,028 KB
testcase_38 AC 120 ms
98,076 KB
testcase_39 AC 95 ms
86,016 KB
testcase_40 AC 159 ms
117,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd


def f(a, b):
    if gcd(a, b) == 1:
        return a * b - a - b + 1
    else:
        return 0


n = int(input())
A = list(map(int, input().split()))
odd = []
even = []
for i, a in enumerate(A):
    if a % 2 == 1:
        odd.append(i)
    else:
        even.append(i)

if len(even) >= 2:
    i, j = even[:2]
    print(0)
    print(i + 1, j + 1)
    for i in range(n - 2, 0, -1):
        print(i, i + 1)
    exit()
elif even and len(odd) >= 2:
    i, j = odd[:2]
    print(0)
    print(i + 1, j + 1)
    ii = even[0]
    if i < ii:
        ii += 1
    if j < ii:
        ii += 1
    print(ii + 1, n - 1)
    for i in range(n - 3, 0, -1):
        print(i, i + 1)
elif len(odd) >= 4:
    i, j, k, l = odd[:4]
    print(0)
    print(k + 1, l + 1)
    print(i + 1, j + 1)
    print(n - 3, n - 2)
    for i in range(n - 4, 0, -1):
        print(i, i + 1)
elif n == 2:
    a, b = A
    print(f(a, b))
    print(1, 2)
else:
    a, b, c = A
    mi1 = f(f(a, b), c)
    mi2 = f(f(a, c), b)
    mi3 = f(f(b, c), a)
    mi = min(mi1, mi2, mi3)
    print(mi1)
    if mi == mi1:
        print(1, 2)
    elif mi == mi2:
        print(1, 3)
    else:
        print(2, 3)
    print(1, 2)
0