結果
| 問題 | No.1734 Decreasing Elements |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-01-23 10:38:13 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 132 bytes |
| コンパイル時間 | 289 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 22,888 KB |
| 最終ジャッジ日時 | 2024-09-28 06:39:33 |
| 合計ジャッジ時間 | 2,611 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 24 |
ソースコード
n=int(input()) a=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)