結果
| 問題 |
No.3218 Night Equation
|
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2025-08-03 00:50:49 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 138 bytes |
| コンパイル時間 | 155 ms |
| コンパイル使用メモリ | 12,160 KB |
| 実行使用メモリ | 21,036 KB |
| 最終ジャッジ日時 | 2025-08-03 00:50:52 |
| 合計ジャッジ時間 | 3,165 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 28 WA * 1 |
ソースコード
import sys
input = sys.stdin.readline
N=int(input())
A=list(map(int,input().split()))
if A==[0]:
print("No")
else:
print("Yes")
titia