結果

問題 No.3090 Knapsack Function
ユーザー H20H20
提出日時 2022-04-01 23:17:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 1,265 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 86,404 KB
最終ジャッジ日時 2024-11-20 12:14:11
合計ジャッジ時間 2,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,872 KB
testcase_01 AC 37 ms
52,616 KB
testcase_02 AC 39 ms
53,100 KB
testcase_03 AC 38 ms
53,348 KB
testcase_04 AC 37 ms
52,092 KB
testcase_05 AC 38 ms
52,632 KB
testcase_06 AC 39 ms
53,120 KB
testcase_07 AC 37 ms
53,244 KB
testcase_08 AC 38 ms
53,012 KB
testcase_09 AC 37 ms
53,260 KB
testcase_10 AC 37 ms
52,880 KB
testcase_11 AC 38 ms
54,004 KB
testcase_12 AC 37 ms
53,068 KB
testcase_13 AC 37 ms
53,568 KB
testcase_14 AC 35 ms
52,616 KB
testcase_15 AC 35 ms
52,876 KB
testcase_16 AC 137 ms
85,868 KB
testcase_17 AC 135 ms
86,120 KB
testcase_18 AC 130 ms
86,404 KB
testcase_19 AC 132 ms
86,280 KB
testcase_20 AC 138 ms
86,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
VW = [list(map(int, input().split())) for _ in range(N)]
for v,w in VW:
    if w==1:
        print('Yes')
        exit()
print('No')
0