結果

問題 No.2519 Coins in Array
ユーザー ニックネームニックネーム
提出日時 2023-10-27 22:48:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 740 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,060 KB
最終ジャッジ日時 2024-09-25 14:49:19
合計ジャッジ時間 8,905 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
11,008 KB
testcase_07 WA -
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 WA -
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 WA -
testcase_17 AC 29 ms
10,880 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 398 ms
31,056 KB
testcase_24 AC 400 ms
30,604 KB
testcase_25 AC 29 ms
10,880 KB
testcase_26 AC 28 ms
11,008 KB
testcase_27 AC 400 ms
30,928 KB
testcase_28 AC 398 ms
31,060 KB
testcase_29 AC 393 ms
31,056 KB
testcase_30 AC 367 ms
28,928 KB
testcase_31 AC 89 ms
14,276 KB
testcase_32 AC 212 ms
20,708 KB
testcase_33 AC 288 ms
23,832 KB
testcase_34 AC 148 ms
16,952 KB
testcase_35 AC 261 ms
23,680 KB
testcase_36 AC 129 ms
16,044 KB
testcase_37 AC 72 ms
13,696 KB
testcase_38 AC 223 ms
21,592 KB
testcase_39 AC 136 ms
16,724 KB
testcase_40 AC 373 ms
20,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n = int(input())
a = list(map(int,input().split()))
def f(x,y): return 0 if gcd(x,y)>1 else x*y-x-y+1
if n==2: print(f(a[0],a[1])); print(1,2)
elif n==3:
    p,q,r = f(f(a[0],a[1]),a[2]),f(f(a[1],a[2]),a[0]),f(f(a[2],a[0]),a[1])
    if q>=p<=r: print(p); print(1,2); print(1,2)
    elif q<=r: print(q); print(2.3); print(1,2)
    else: print(r); print(3,1); print(1,2)
else:
    print(0); j = [[],[],[]]
    for i,v in enumerate(a): j[v%3].append(i)
    if len(j[0])==0: print(1,2); print(1,2)
    elif len(j[0])>=2: print(j[0][0]+1,j[0][1]+1); print(1,n-1)
    elif len(j[2])>=2: print(j[2][0]+1,j[2][1]+1); print(j[0][0]+1,n-1)
    else: print(j[0][0]+1,j[1][0]+1); print(1,2)
    for i in range(n-2,1,-1): print(1,i)
0