結果

問題 No.3218 Night Equation
ユーザー yu23578
提出日時 2025-08-01 21:34:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 110 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 83,572 KB
最終ジャッジ日時 2025-08-01 21:34:41
合計ジャッジ時間 3,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 28 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
if(N == 1 and A[0] == 0):
	print("No")
else:
	print("Yes")
0