結果

問題 No.3345 Reducible Sequence
コンテスト
ユーザー tassei903
提出日時 2025-11-10 16:51:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 61,696 KB
最終ジャッジ日時 2025-11-13 21:13:11
合計ジャッジ時間 2,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
assert 1 <= n <= 5000

a = [int(x) for x in input().split()]
assert len(a) == n
assert all(1 <= x <= 5000 for x in a)
0