結果

問題 No.2535 多重同値
ユーザー なえしらなえしら
提出日時 2023-11-10 22:23:21
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 216 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 638,748 KB
最終ジャッジ日時 2024-09-26 01:47:57
合計ジャッジ時間 5,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,904 KB
testcase_01 AC 46 ms
55,040 KB
testcase_02 AC 47 ms
54,656 KB
testcase_03 AC 47 ms
54,400 KB
testcase_04 AC 47 ms
54,784 KB
testcase_05 AC 45 ms
54,656 KB
testcase_06 AC 46 ms
54,784 KB
testcase_07 AC 47 ms
54,656 KB
testcase_08 AC 47 ms
54,784 KB
testcase_09 AC 46 ms
55,296 KB
testcase_10 AC 47 ms
54,784 KB
testcase_11 AC 46 ms
55,040 KB
testcase_12 AC 46 ms
54,528 KB
testcase_13 AC 45 ms
54,912 KB
testcase_14 AC 92 ms
77,184 KB
testcase_15 AC 525 ms
236,224 KB
testcase_16 MLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache

N = int(input())
P = [input() for i in range(N)]

@cache
def X(l, r):
  if l == r: return P[l-1]
  return P[l-1] == X(l + 1, r) and "Yes" or "No"

for r in range(1, N+1):
  print(X(1, r))
0