結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,052 KB
testcase_01 AC 36 ms
52,392 KB
testcase_02 AC 37 ms
52,400 KB
testcase_03 AC 36 ms
52,932 KB
testcase_04 AC 36 ms
52,780 KB
testcase_05 WA -
testcase_06 AC 36 ms
53,072 KB
testcase_07 AC 38 ms
53,268 KB
testcase_08 AC 36 ms
53,992 KB
testcase_09 AC 36 ms
52,936 KB
testcase_10 AC 37 ms
53,696 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 36 ms
53,984 KB
testcase_15 AC 36 ms
53,368 KB
testcase_16 WA -
testcase_17 AC 37 ms
53,416 KB
testcase_18 AC 37 ms
52,780 KB
testcase_19 AC 38 ms
52,332 KB
testcase_20 AC 36 ms
52,812 KB
testcase_21 AC 37 ms
52,600 KB
testcase_22 AC 38 ms
52,328 KB
testcase_23 AC 174 ms
108,956 KB
testcase_24 AC 176 ms
110,336 KB
testcase_25 AC 35 ms
52,748 KB
testcase_26 AC 36 ms
53,024 KB
testcase_27 AC 173 ms
108,916 KB
testcase_28 AC 174 ms
109,008 KB
testcase_29 AC 174 ms
109,072 KB
testcase_30 AC 163 ms
110,600 KB
testcase_31 AC 77 ms
80,988 KB
testcase_32 AC 118 ms
97,520 KB
testcase_33 AC 145 ms
108,988 KB
testcase_34 AC 99 ms
90,312 KB
testcase_35 AC 138 ms
105,440 KB
testcase_36 AC 92 ms
86,516 KB
testcase_37 AC 73 ms
79,084 KB
testcase_38 AC 123 ms
100,624 KB
testcase_39 AC 94 ms
88,328 KB
testcase_40 AC 170 ms
120,688 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 = [0] * 2
        lis2 = [0] * 2
        b = sorted(a)[:2]
        for i in range(2):
            for j, x in enumerate(a, 1):
                if(x != b[i]):
                    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:
    print(x, y)
0