結果
| 問題 |
No.2836 Comment Out
|
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2024-08-10 03:50:40 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 101 ms / 2,000 ms |
| コード長 | 141 bytes |
| コンパイル時間 | 379 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 32,980 KB |
| 最終ジャッジ日時 | 2024-08-10 03:50:47 |
| 合計ジャッジ時間 | 6,208 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 52 |
ソースコード
import sys
input = sys.stdin.readline
N=int(input())
A=list(map(int,input().split()))
if min(A)<=1:
print("Yes")
else:
print("No")
titia