結果

問題 No.2519 Coins in Array
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-10-27 23:02:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,437 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 109,064 KB
最終ジャッジ日時 2024-09-25 15:02:49
合計ジャッジ時間 15,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,532 KB
testcase_01 AC 39 ms
55,408 KB
testcase_02 AC 42 ms
60,684 KB
testcase_03 AC 42 ms
61,188 KB
testcase_04 AC 39 ms
55,616 KB
testcase_05 AC 40 ms
55,140 KB
testcase_06 AC 39 ms
55,124 KB
testcase_07 WA -
testcase_08 AC 41 ms
55,428 KB
testcase_09 WA -
testcase_10 AC 39 ms
55,140 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 39 ms
54,284 KB
testcase_15 AC 42 ms
60,464 KB
testcase_16 AC 39 ms
55,120 KB
testcase_17 AC 41 ms
55,752 KB
testcase_18 AC 41 ms
61,052 KB
testcase_19 AC 42 ms
60,000 KB
testcase_20 AC 38 ms
54,876 KB
testcase_21 WA -
testcase_22 AC 39 ms
55,032 KB
testcase_23 AC 1,677 ms
108,828 KB
testcase_24 RE -
testcase_25 AC 38 ms
54,392 KB
testcase_26 AC 38 ms
54,772 KB
testcase_27 AC 1,447 ms
109,064 KB
testcase_28 AC 1,441 ms
109,020 KB
testcase_29 AC 1,450 ms
108,968 KB
testcase_30 AC 1,068 ms
105,160 KB
testcase_31 AC 246 ms
81,204 KB
testcase_32 AC 108 ms
91,700 KB
testcase_33 WA -
testcase_34 AC 439 ms
87,064 KB
testcase_35 WA -
testcase_36 AC 365 ms
85,200 KB
testcase_37 AC 201 ms
80,024 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 171 ms
105,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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

M = 2*10**5+5

count = [0]*M

for a in A:
    count[a] += 1


if count[1]:
    ans = 1
    print(ans)
    for i in range(n-1):
        print(1,2)
    
    exit()

ans = 10**18
if count[0]:
    ans = 0
    print(ans)
    for i in range(n-1):
        print(1,2)

    exit()

target = []
dic = {}
for ind,a in enumerate(A):
    now = a
    for i in range(2,int(a**0.5)+1):
        if now%i:
            continue
        if i in dic:
            target = [a,dic[i]]
        
        while now % i == 0:
            now //= i
        dic[i] = a

    if now != 1:
        dic[now] = a
    
if target:
    first = []
    for i,a in enumerate(A):
        if a in target:
            first.append(i+1)
            target.remove(a)
    
    print(0)
    print(*first)
    for i in range(n-2):
        print(1,2)
    exit()


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

assert len(even) < 2

if n == 2:
    ans = (A[0]-1)*(A[1]-1)
    print(ans)
    print(1,2)
    exit()


if even == []:
    if n > 4:
        print(0)
    else:
        ans = (A[0]-1)*(A[1]-1)

        ans = (ans-1)*(A[2]-1)
        print(ans)

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


    exit()



else:
    ans = 0
    print(0)
    print(odd.pop(),odd.pop())
    print(n-1,even.pop())
    for i in range(n-3):
        print(1,2)
0