結果

問題 No.3218 Night Equation
ユーザー programogumogu
提出日時 2025-08-14 01:13:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 120 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 21,068 KB
最終ジャッジ日時 2025-08-14 01:13:26
合計ジャッジ時間 3,234 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(x) for x in input().split()]

for i in a:
	if i > 0:
		print("Yes")
		break
else:
	print("No")
0