結果

問題 No.3090 Knapsack Function
ユーザー tassei903tassei903
提出日時 2022-04-01 21:31:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 91,260 KB
最終ジャッジ日時 2024-04-30 13:10:43
合計ジャッジ時間 2,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,612 KB
testcase_01 AC 38 ms
53,116 KB
testcase_02 AC 37 ms
53,080 KB
testcase_03 AC 40 ms
52,952 KB
testcase_04 AC 38 ms
52,392 KB
testcase_05 AC 37 ms
53,624 KB
testcase_06 AC 38 ms
52,760 KB
testcase_07 AC 38 ms
53,648 KB
testcase_08 AC 41 ms
53,560 KB
testcase_09 AC 38 ms
53,096 KB
testcase_10 AC 38 ms
53,632 KB
testcase_11 AC 37 ms
52,728 KB
testcase_12 AC 37 ms
53,604 KB
testcase_13 AC 37 ms
52,888 KB
testcase_14 AC 38 ms
53,080 KB
testcase_15 AC 40 ms
52,924 KB
testcase_16 AC 129 ms
91,260 KB
testcase_17 AC 130 ms
90,852 KB
testcase_18 AC 127 ms
91,256 KB
testcase_19 AC 126 ms
90,904 KB
testcase_20 AC 128 ms
91,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
v,w = zip(*[na() for i in range(n)])
if 1 in w:
    Yes()
else:
    No()
0