結果

問題 No.3090 Knapsack Function
ユーザー 👑 KazunKazun
提出日時 2022-04-01 21:40:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 87,244 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2023-08-12 18:20:40
合計ジャッジ時間 3,175 ms
ジャッジサーバーID
(参考情報)
judge14 / judge10
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
71,276 KB
testcase_01 AC 66 ms
71,460 KB
testcase_02 AC 65 ms
71,312 KB
testcase_03 AC 68 ms
71,428 KB
testcase_04 AC 67 ms
71,160 KB
testcase_05 AC 66 ms
71,352 KB
testcase_06 AC 68 ms
71,468 KB
testcase_07 AC 74 ms
71,072 KB
testcase_08 AC 73 ms
71,384 KB
testcase_09 AC 70 ms
71,200 KB
testcase_10 AC 70 ms
71,352 KB
testcase_11 AC 70 ms
71,168 KB
testcase_12 AC 74 ms
71,268 KB
testcase_13 AC 71 ms
71,264 KB
testcase_14 AC 67 ms
71,264 KB
testcase_15 AC 65 ms
71,020 KB
testcase_16 AC 128 ms
78,788 KB
testcase_17 AC 128 ms
78,736 KB
testcase_18 AC 133 ms
78,688 KB
testcase_19 AC 136 ms
78,848 KB
testcase_20 AC 136 ms
78,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
v=[0]*N; w=[0]*N
for i in range(N):
    v[i],w[i]=map(int,input().split())

print("Yes" if (1 in w) else "No")
0