結果

問題 No.2519 Coins in Array
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-10-28 09:45:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 106,880 KB
最終ジャッジ日時 2024-09-25 16:14:20
合計ジャッジ時間 6,076 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 40 ms
52,352 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 39 ms
52,480 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 40 ms
52,224 KB
testcase_20 AC 39 ms
52,224 KB
testcase_21 AC 39 ms
52,224 KB
testcase_22 AC 40 ms
52,352 KB
testcase_23 AC 155 ms
106,880 KB
testcase_24 AC 160 ms
106,240 KB
testcase_25 AC 39 ms
52,352 KB
testcase_26 AC 40 ms
52,224 KB
testcase_27 AC 154 ms
106,496 KB
testcase_28 AC 154 ms
106,752 KB
testcase_29 AC 157 ms
106,624 KB
testcase_30 AC 148 ms
103,168 KB
testcase_31 AC 82 ms
78,976 KB
testcase_32 AC 114 ms
90,240 KB
testcase_33 AC 132 ms
97,152 KB
testcase_34 AC 101 ms
85,120 KB
testcase_35 AC 126 ms
94,464 KB
testcase_36 AC 93 ms
82,304 KB
testcase_37 AC 84 ms
77,952 KB
testcase_38 AC 123 ms
91,904 KB
testcase_39 AC 97 ms
83,840 KB
testcase_40 AC 155 ms
104,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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


def f(A,inds):
    ans = [[inds[-1],inds[-2]]]
    
    a1,a2 = A[-1],A[-2]
    num = 10**18
    if math.gcd(a1,a2) != 1:
        num = 0
    else:
        num = (a1-1)*(a2-1)

    for i in range(len(A)-2):
        if math.gcd(num,A[0]) != 1:
            num = 0
        if num:
            num = (num-1) * (A[0]-1)
        ans.append([1,2])
    
    return num,ans

if n >= 4:
    print(0)
    for i in range(n-1):
        print(1,2)

else:

    inds = [i+1 for i in range(n)]

    res = 10**18
    ans = []
    for i in range(n):
        num,ans2 = f(A,inds)
        if num < res:
            res = num
            ans = ans2
        
        inds = inds[1:] + [inds[0]]
        A = A[1:] + [A[0]]
    
    print(res)
    for a in ans:
        print(*a)
0