結果
問題 | No.933 おまわりさんこいつです |
ユーザー |
👑 |
提出日時 | 2025-03-01 20:30:31 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 205 bytes |
コンパイル時間 | 429 ms |
コンパイル使用メモリ | 82,600 KB |
実行使用メモリ | 92,124 KB |
最終ジャッジ日時 | 2025-03-01 20:30:38 |
合計ジャッジ時間 | 7,084 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | TLE * 1 -- * 24 |
ソースコード
N = int(input()) P = list(map(int, input().split())) ans = 0 while True: for p in P: ans += p if 0 <= ans < 10: break else: P = [ans] ans = 0 print(ans)