結果

問題 No.3090 Knapsack Function
ユーザー chineristACchineristAC
提出日時 2022-04-01 21:41:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 89,976 KB
最終ジャッジ日時 2024-11-20 08:41:34
合計ジャッジ時間 4,499 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
88,696 KB
testcase_01 AC 152 ms
88,652 KB
testcase_02 AC 147 ms
89,012 KB
testcase_03 AC 144 ms
88,896 KB
testcase_04 AC 147 ms
88,852 KB
testcase_05 AC 149 ms
88,808 KB
testcase_06 AC 152 ms
88,704 KB
testcase_07 AC 145 ms
88,864 KB
testcase_08 AC 145 ms
88,832 KB
testcase_09 AC 141 ms
88,596 KB
testcase_10 AC 143 ms
88,632 KB
testcase_11 AC 147 ms
88,856 KB
testcase_12 AC 148 ms
88,732 KB
testcase_13 AC 145 ms
88,960 KB
testcase_14 AC 144 ms
88,832 KB
testcase_15 AC 146 ms
88,832 KB
testcase_16 AC 171 ms
89,976 KB
testcase_17 AC 183 ms
89,608 KB
testcase_18 AC 178 ms
89,532 KB
testcase_19 AC 166 ms
89,624 KB
testcase_20 AC 179 ms
89,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd
from fractions import Fraction

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

N = int(input())
for _ in range(N):
    v,w = mi()
    if w==1:
        exit(print("Yes"))
print("No")
0