結果

問題 No.2519 Coins in Array
ユーザー ニックネームニックネーム
提出日時 2023-10-27 23:32:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,004 KB
最終ジャッジ日時 2024-09-25 15:26:14
合計ジャッジ時間 7,854 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 28 ms
11,008 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 27 ms
11,008 KB
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 29 ms
11,008 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 29 ms
11,008 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 29 ms
11,008 KB
testcase_16 AC 29 ms
10,880 KB
testcase_17 AC 30 ms
11,008 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 29 ms
11,008 KB
testcase_20 AC 30 ms
10,880 KB
testcase_21 AC 29 ms
11,008 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 343 ms
31,000 KB
testcase_24 AC 338 ms
30,880 KB
testcase_25 AC 28 ms
11,008 KB
testcase_26 AC 29 ms
10,880 KB
testcase_27 AC 344 ms
31,004 KB
testcase_28 AC 343 ms
31,004 KB
testcase_29 AC 355 ms
31,004 KB
testcase_30 AC 324 ms
28,996 KB
testcase_31 AC 78 ms
13,704 KB
testcase_32 AC 185 ms
20,648 KB
testcase_33 AC 256 ms
25,772 KB
testcase_34 AC 135 ms
17,148 KB
testcase_35 AC 238 ms
23,496 KB
testcase_36 AC 111 ms
15,988 KB
testcase_37 AC 64 ms
13,036 KB
testcase_38 AC 196 ms
21,524 KB
testcase_39 AC 123 ms
16,792 KB
testcase_40 AC 320 ms
14,844 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 or x==y==0 else (x-1)*(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); print(1,2); print(1,2); print(n-3,n-2)
    for i in range(n-3,1,-1): print(1,i)
0