結果
| 問題 | No.1717 Levi-Civita Triangle |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-10-22 22:45:16 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 109 ms / 2,000 ms |
| + 925µs | |
| コード長 | 1,054 bytes |
| 記録 | |
| コンパイル時間 | 418 ms |
| コンパイル使用メモリ | 96,076 KB |
| 実行使用メモリ | 127,488 KB |
| 最終ジャッジ日時 | 2026-09-03 00:45:29 |
| 合計ジャッジ時間 | 6,160 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 42 |
ソースコード
import sys
input = sys.stdin.readline
def iinput(): return int(input())
def sinput(): return input().rstrip()
def i0input(): return int(input()) - 1
def linput(): return list(input().split())
def liinput(): return list(map(int, input().split()))
def miinput(): return map(int, input().split())
def li0input(): return list(map(lambda x: int(x) - 1, input().split()))
def mi0input(): return map(lambda x: int(x) - 1, input().split())
INF = 10**20
MOD = 1000000007
def levi(x):
if x == (0, 1, 2) or x == (1, 2, 0) or x == (2, 0, 1):
return 1
elif x == (2, 1, 0) or x == (1, 0, 2) or x == (0, 2, 1):
return 2
else:
return 0
N = iinput()
P = liinput()
Q = []
for i in range(2 * N - 1):
Q.append(levi((P[i], P[i + 1], P[i + 2])))
if len(Q) == 1:
print(Q[0])
exit(0)
for q in Q[1::2]:
if q != 0:
exit(print(0))
for q, r in zip(Q[::2], Q[2::2]):
if q == r or q == 0 or r == 0:
exit(print(0))
if N % 2:
print(Q[0])
else:
if Q[0] == 1:
print(2)
else:
print(1)