結果

問題 No.2519 Coins in Array
ユーザー MasKoaTSMasKoaTS
提出日時 2023-09-19 20:23:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 108,928 KB
最終ジャッジ日時 2024-07-05 21:44:31
合計ジャッジ時間 6,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 38 ms
52,312 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 40 ms
52,480 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 39 ms
51,712 KB
testcase_11 AC 39 ms
51,712 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 38 ms
52,608 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 37 ms
51,840 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 38 ms
52,352 KB
testcase_20 AC 39 ms
52,224 KB
testcase_21 AC 38 ms
51,996 KB
testcase_22 AC 37 ms
52,224 KB
testcase_23 AC 158 ms
108,464 KB
testcase_24 AC 162 ms
108,288 KB
testcase_25 AC 38 ms
51,840 KB
testcase_26 AC 39 ms
52,340 KB
testcase_27 AC 161 ms
108,544 KB
testcase_28 AC 161 ms
108,544 KB
testcase_29 AC 160 ms
108,928 KB
testcase_30 AC 152 ms
104,960 KB
testcase_31 AC 78 ms
79,616 KB
testcase_32 AC 111 ms
91,196 KB
testcase_33 AC 132 ms
98,432 KB
testcase_34 AC 95 ms
86,016 KB
testcase_35 AC 126 ms
95,488 KB
testcase_36 AC 85 ms
82,816 KB
testcase_37 AC 73 ms
77,696 KB
testcase_38 AC 123 ms
92,544 KB
testcase_39 AC 92 ms
84,656 KB
testcase_40 AC 155 ms
106,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
input = sys.stdin.readline

def f(x, y):
    if(gcd(x, y) == 1):
        return (x - 1) * (y - 1)
    return 0


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

ans = 10 ** 18
ops = []
if(n == 2):
    ans = f(a[0], a[1])
    ops = [(1, 2)]
elif(n == 3):
    ans = f(f(a[0], a[1]), a[2])
    ops = [(1, 2), (1, 2)]
    t = f(f(a[0], a[2]), a[1])
    if(t < ans):
        ans = t
        ops = [(1, 3), (1, 2)]
    t = f(f(a[1], a[2]), a[0])
    if(t < ans):
        ans = t
        ops = [(2, 3), (1, 2)]
else:
    ans = 0
    ops = [(1, 2) for _ in [0] * (n - 1)]

print(ans)
for x, y in ops:
    print(x, y)
0