結果

問題 No.3090 Knapsack Function
ユーザー ああいいああいい
提出日時 2022-04-01 21:25:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,480 KB
最終ジャッジ日時 2024-04-30 12:59:26
合計ジャッジ時間 1,854 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,412 KB
testcase_01 AC 31 ms
52,280 KB
testcase_02 AC 31 ms
52,092 KB
testcase_03 AC 32 ms
52,436 KB
testcase_04 AC 32 ms
52,356 KB
testcase_05 AC 31 ms
52,092 KB
testcase_06 AC 33 ms
53,676 KB
testcase_07 AC 33 ms
53,304 KB
testcase_08 AC 32 ms
52,488 KB
testcase_09 AC 32 ms
52,392 KB
testcase_10 AC 33 ms
53,572 KB
testcase_11 AC 32 ms
53,044 KB
testcase_12 AC 32 ms
53,424 KB
testcase_13 AC 32 ms
53,020 KB
testcase_14 AC 37 ms
53,436 KB
testcase_15 AC 32 ms
52,268 KB
testcase_16 AC 81 ms
76,092 KB
testcase_17 AC 95 ms
75,972 KB
testcase_18 AC 97 ms
76,244 KB
testcase_19 AC 80 ms
76,364 KB
testcase_20 AC 96 ms
76,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
flag = False
for _ in range(N):
    v,w = map(int,input().split())
    if w == 1:
        flag = True
        break
    
if flag:
    print('Yes')
else:
    print('No')
0