結果

問題 No.2519 Coins in Array
ユーザー MasKoaTSMasKoaTS
提出日時 2023-10-27 12:43:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 1,369 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 125,768 KB
最終ジャッジ日時 2024-09-25 12:59:51
合計ジャッジ時間 11,185 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
86,228 KB
testcase_01 AC 122 ms
86,520 KB
testcase_02 AC 127 ms
86,056 KB
testcase_03 AC 124 ms
86,188 KB
testcase_04 AC 124 ms
86,120 KB
testcase_05 AC 123 ms
86,376 KB
testcase_06 AC 125 ms
86,344 KB
testcase_07 AC 124 ms
86,300 KB
testcase_08 AC 123 ms
86,632 KB
testcase_09 AC 124 ms
86,328 KB
testcase_10 AC 124 ms
86,244 KB
testcase_11 AC 122 ms
86,316 KB
testcase_12 AC 124 ms
86,376 KB
testcase_13 AC 123 ms
86,580 KB
testcase_14 AC 124 ms
86,348 KB
testcase_15 AC 123 ms
86,288 KB
testcase_16 AC 125 ms
86,480 KB
testcase_17 AC 122 ms
86,396 KB
testcase_18 AC 122 ms
86,352 KB
testcase_19 AC 126 ms
86,524 KB
testcase_20 AC 123 ms
86,380 KB
testcase_21 AC 122 ms
86,144 KB
testcase_22 AC 125 ms
86,380 KB
testcase_23 AC 239 ms
121,636 KB
testcase_24 AC 243 ms
121,020 KB
testcase_25 AC 125 ms
86,016 KB
testcase_26 AC 124 ms
86,364 KB
testcase_27 AC 242 ms
121,836 KB
testcase_28 AC 242 ms
121,548 KB
testcase_29 AC 243 ms
121,400 KB
testcase_30 AC 232 ms
117,432 KB
testcase_31 AC 162 ms
92,664 KB
testcase_32 AC 197 ms
104,092 KB
testcase_33 AC 212 ms
111,232 KB
testcase_34 AC 179 ms
100,168 KB
testcase_35 AC 207 ms
109,044 KB
testcase_36 AC 175 ms
97,676 KB
testcase_37 AC 158 ms
91,520 KB
testcase_38 AC 199 ms
105,932 KB
testcase_39 AC 180 ms
99,044 KB
testcase_40 AC 239 ms
125,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from functools import cmp_to_key
import math
import sys
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10 ** 6)
inp = sys.stdin.readline
input = lambda : inp()[:-1]
getN = lambda : int(inp())
getNs = lambda : map(int, inp().split())
getList = lambda :list(map(int, inp().split()))
getStrs = lambda n : [input() for _ in [0] * n]
getEdges = lambda n : [[x - 1 for x in getNs()] for _ in [0] * n]
def yexit(): print("Yes"); exit(0)
def nexit(): print("No"); exit(0)
pi = 3.141592653589793
mod = 1000000007
MOD = 998244353
INF = 4611686018427387903
dx = [1, 0, -1, 0];  dy = [0, 1, 0, -1]
#di = coll.defaultdict(int)

def f(x, y):
    if(math.gcd(x, y) != 1):
        return 0
    return (x - 1) * (y - 1)
 
"""
Main Code
"""

n = getN()
a = getList()

ans = INF
ops = []
if(n == 2):
    ans = f(a[0], a[1])
    ops = [(1, 2)]
elif(n == 3):
    ans_lis = [f(f(a[0], a[1]), a[2]), f(f(a[0], a[2]), a[1]), f(f(a[1], a[2]), a[0])]
    ops_lis = [[(1, 2), (1, 2)], [(1, 3), (1, 2)], [(2, 3), (1, 2)]]
    for x, y in zip(ans_lis, ops_lis):
        if(ans <= x):
            continue
        ans, ops = x, y
else:
    ans = 0
    ops = [(1, 2) for _ in [0] * (n - 1)]

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