結果
| 問題 | No.1734 Decreasing Elements |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-01-23 10:40:44 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 138 bytes |
| 記録 | |
| コンパイル時間 | 252 ms |
| コンパイル使用メモリ | 96,080 KB |
| 実行使用メモリ | 303,580 KB |
| 最終ジャッジ日時 | 2026-09-05 14:39:51 |
| 合計ジャッジ時間 | 9,756 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 1 WA * 17 TLE * 1 -- * 5 |
ソースコード
n=int(input()) a=list(map(int,input().split())) z=0 for i in range(n) : if a[i] == 0 : z+=1 else: a=[aj%a[i] for aj in a] print(n-z)