結果
| 問題 | No.3218 Night Equation |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2025-08-03 00:50:49 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 138 bytes |
| 記録 | |
| コンパイル時間 | 649 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 26,068 KB |
| 最終ジャッジ日時 | 2026-07-13 19:12:36 |
| 合計ジャッジ時間 | 5,790 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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