結果

問題 No.3130 Twin's Add Max Min Game
ユーザー 👑 loop0919
提出日時 2025-02-17 01:46:43
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 108 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 115,744 KB
最終ジャッジ日時 2025-02-17 01:53:32
合計ジャッジ時間 7,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 1 RE * 55
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
S = input().split()

assert all(s == "max" for s in S)
0