結果

問題 No.2519 Coins in Array
ユーザー MasKoaTSMasKoaTS
提出日時 2023-09-03 17:51:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 968 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 120,432 KB
最終ジャッジ日時 2024-06-23 12:24:50
合計ジャッジ時間 6,824 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,684 KB
testcase_01 AC 37 ms
53,996 KB
testcase_02 AC 37 ms
53,884 KB
testcase_03 AC 36 ms
53,732 KB
testcase_04 AC 36 ms
53,060 KB
testcase_05 AC 36 ms
53,592 KB
testcase_06 AC 37 ms
52,936 KB
testcase_07 AC 37 ms
53,556 KB
testcase_08 AC 36 ms
52,508 KB
testcase_09 AC 37 ms
53,736 KB
testcase_10 AC 36 ms
52,928 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 36 ms
53,448 KB
testcase_15 AC 36 ms
53,288 KB
testcase_16 WA -
testcase_17 AC 37 ms
53,460 KB
testcase_18 AC 37 ms
52,444 KB
testcase_19 AC 36 ms
52,588 KB
testcase_20 AC 36 ms
52,800 KB
testcase_21 AC 36 ms
53,352 KB
testcase_22 AC 37 ms
53,004 KB
testcase_23 AC 167 ms
109,304 KB
testcase_24 AC 169 ms
110,404 KB
testcase_25 AC 36 ms
53,416 KB
testcase_26 AC 37 ms
52,528 KB
testcase_27 AC 170 ms
109,460 KB
testcase_28 AC 171 ms
109,068 KB
testcase_29 AC 166 ms
109,160 KB
testcase_30 AC 157 ms
110,968 KB
testcase_31 AC 77 ms
81,328 KB
testcase_32 AC 115 ms
97,516 KB
testcase_33 AC 140 ms
108,988 KB
testcase_34 AC 99 ms
90,124 KB
testcase_35 AC 137 ms
105,620 KB
testcase_36 AC 90 ms
86,172 KB
testcase_37 AC 74 ms
79,148 KB
testcase_38 AC 123 ms
100,396 KB
testcase_39 AC 95 ms
88,088 KB
testcase_40 AC 165 ms
120,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
from itertools import permutations
input = sys.stdin.readline

def f(x, y):
    if(gcd(x, y) == 1):
        return (x - 1) * (y - 1)
    return 0


n = int(input())
a = list(map(int, input().split()))

ans = 10 ** 18
ops = []
if(n == 2):
    ans = f(a[0], a[1])
    ops = [(1, 2)]
elif(n == 3):
    while(len(a) > 1):
        lis1 = [-1] * 2
        lis2 = [0] * 2
        b = sorted(a)[:2]
        for i in range(2):
            for j, x in enumerate(a, 1):
                if(x != b[i] or j == lis1[0]):
                    continue
                lis1[i] = j
                lis2[i] = x
                break
        for x in lis2:
            a.remove(x)
        a.append(f(*lis2))
        ops.append(tuple(lis1))
    ans = a[0]
else:
    ans = 0
    ops = [(1, 2), (1, 2), (n - 3, n - 2)]
    for i in range(n - 3, 1, -1):
        ops.append((1, i))

print(ans)
for x, y in ops:
    if(x > y):
        x, y = y, x
    print(x, y)
0