結果
問題 | No.2519 Coins in Array |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2023-10-27 23:45:19 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,724 bytes |
コンパイル時間 | 290 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 107,160 KB |
最終ジャッジ日時 | 2024-09-25 15:33:26 |
合計ジャッジ時間 | 7,942 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 39 ms
52,352 KB |
testcase_02 | AC | 41 ms
58,624 KB |
testcase_03 | RE | - |
testcase_04 | AC | 37 ms
52,556 KB |
testcase_05 | AC | 38 ms
52,352 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 40 ms
58,624 KB |
testcase_12 | AC | 45 ms
58,368 KB |
testcase_13 | RE | - |
testcase_14 | AC | 38 ms
53,124 KB |
testcase_15 | AC | 40 ms
52,480 KB |
testcase_16 | AC | 40 ms
52,864 KB |
testcase_17 | AC | 40 ms
52,480 KB |
testcase_18 | AC | 41 ms
52,864 KB |
testcase_19 | AC | 40 ms
52,864 KB |
testcase_20 | AC | 41 ms
52,608 KB |
testcase_21 | AC | 44 ms
58,624 KB |
testcase_22 | RE | - |
testcase_23 | AC | 154 ms
107,160 KB |
testcase_24 | AC | 158 ms
106,880 KB |
testcase_25 | AC | 41 ms
53,120 KB |
testcase_26 | AC | 40 ms
52,864 KB |
testcase_27 | AC | 169 ms
107,008 KB |
testcase_28 | AC | 165 ms
106,752 KB |
testcase_29 | AC | 163 ms
107,008 KB |
testcase_30 | AC | 152 ms
103,040 KB |
testcase_31 | AC | 88 ms
79,232 KB |
testcase_32 | AC | 116 ms
89,856 KB |
testcase_33 | RE | - |
testcase_34 | AC | 98 ms
85,476 KB |
testcase_35 | RE | - |
testcase_36 | AC | 94 ms
83,216 KB |
testcase_37 | AC | 86 ms
78,336 KB |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | AC | 150 ms
104,672 KB |
ソースコード
import math n = int(input()) A = list(map(int,input().split())) if 1 in A: assert False print(1) f = A.index(1) + 1 s = 2 if f == 1 else 1 print(f,s) for i in range(n-2): print(n-1-i,1) exit() if 0 in A: print(0) f = A.index(0) + 1 s = 2 if f == 1 else 1 print(f,s) for i in range(n-2): print(n-1-i,1) exit() dic = {} target = [] for i,a in enumerate(A,1): now = a for j in range(2,int(a**0.5)+1): if now%j: continue if j in dic: target = [i,dic[j]] break while now % j == 0: now //= j dic[j] = i if now == 1: continue j = now if j in dic: target = [i,dic[j]] break dic[j] = i if target: print(0) assert target[0] != target[1] print(*target) for i in range(n-2): print(1,n-1-i) exit() even = [] odd = [] for i,a in enumerate(A,1): if a%2: odd.append(i) else: even.append(i) def get(A): ans = (A[0]-1) * (A[1]-1) for i in range(2,n): if math.gcd(ans,A[i]) != 1: return 0 ans = (ans-1)*(A[i]-1) return ans if (n == 3 and even == []) or n == 2: assert False print(get(A)) for i in range(n-1): print(1,2) exit() print(0) assert len(even) < 2 if even: f = odd.pop() s = odd.pop() print(f,s) x = even[0] m = 0 if x > f: m += 1 if x > s: m += 1 x -= m print(x,n-1) for i in range(n-3): print(1,n-2-i) else: print(1,2) print(1,2) print(n-2,n-3) for i in range(n-4): print(1,n-3-i)