結果

問題 No.3090 Knapsack Function
ユーザー ShirotsumeShirotsume
提出日時 2022-04-01 21:28:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 75,992 KB
最終ジャッジ日時 2024-04-30 13:04:19
合計ジャッジ時間 2,176 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,776 KB
testcase_01 AC 31 ms
52,188 KB
testcase_02 AC 32 ms
52,316 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 32 ms
53,532 KB
testcase_05 AC 32 ms
52,504 KB
testcase_06 AC 32 ms
52,132 KB
testcase_07 AC 34 ms
52,344 KB
testcase_08 AC 33 ms
52,272 KB
testcase_09 AC 32 ms
52,616 KB
testcase_10 AC 32 ms
52,936 KB
testcase_11 AC 32 ms
52,276 KB
testcase_12 AC 32 ms
53,260 KB
testcase_13 AC 32 ms
52,836 KB
testcase_14 AC 31 ms
52,156 KB
testcase_15 AC 31 ms
53,216 KB
testcase_16 AC 59 ms
75,452 KB
testcase_17 AC 67 ms
75,992 KB
testcase_18 AC 69 ms
75,392 KB
testcase_19 AC 59 ms
75,656 KB
testcase_20 AC 68 ms
75,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())

n = ii()

for i in range(n):
    u, v = mi()
    if v == 1:
        print('Yes')
        exit()
print('No')
0