結果

問題 No.2519 Coins in Array
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-10-27 23:15:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,576 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,580 KB
実行使用メモリ 106,520 KB
最終ジャッジ日時 2023-10-27 23:15:57
合計ジャッジ時間 10,086 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,680 KB
testcase_01 AC 39 ms
53,680 KB
testcase_02 WA -
testcase_03 AC 42 ms
59,692 KB
testcase_04 AC 39 ms
53,476 KB
testcase_05 WA -
testcase_06 AC 39 ms
53,680 KB
testcase_07 WA -
testcase_08 AC 40 ms
53,680 KB
testcase_09 WA -
testcase_10 AC 40 ms
53,680 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 39 ms
53,680 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 40 ms
53,680 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 43 ms
59,692 KB
testcase_22 AC 41 ms
53,680 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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

if 1 in A:
    print(1)
    f = A.index(1) + 1

    s = 2 if f == 1 else 1

    print(f,s)
    for i in range(n-2):
        print(n-2-i,1)

    exit()

if 0 in A:
    print(0)

    f = A.index(0) + 1

    s = 2 if f == 1 else 1

    print(f,s)
    for i in range(n-2):
        print(n-2-i,1)

    exit()


dic = {}
target = []
for i,a in enumerate(A,1):

    now = a
    for j in range(2,int(a**0.5)+1):
        if now%j:
            continue
        if j in dic:
            target = [i,dic[j]]
            break

        while now % j == 0:
            now //= j
        dic[j] = i
        
    if now == 1:
        continue
    j = now
    if j in dic:
        target = [i,dic[j]]
        break
    
    dic[j] = i


if target:
    print(0)
    print(*target)
    for i in range(n-2):
        print(1,n-2-i)

    exit()

even = []
odd = []
for i,a in enumerate(A,1):
    if a%2:
        odd.append(i)
    else:
        even.append(i)


def get(A):

    ans = (A[0]-1) * (A[1]-1)

    for i in range(2,n):
        ans = (ans-1)*(A[i]-1)

    return ans
if (n == 3 and even == []) or n == 2:
    print(get(A))
    for i in range(n-1):
        print(1,2)

    exit()


print(0)

assert len(even) < 2
if even:

    f = odd.pop()
    s = odd.pop()

    print(f,s)
    
    x = even[0]
    if x > f:
        x -= 1
    if x > s:
        x -= 1

    print(x,n-2)
    for i in range(n-3):
        print(1,n-3-i)

else:
    print(1,2)
    print(1,2)
    print(n-2,n-3)
    for i in range(n-4):
        print(1,n-4-i)
0