結果

問題 No.3090 Knapsack Function
ユーザー chineristACchineristAC
提出日時 2022-04-01 21:41:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-04-30 13:29:58
合計ジャッジ時間 3,785 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
89,232 KB
testcase_01 AC 123 ms
88,980 KB
testcase_02 AC 119 ms
88,924 KB
testcase_03 AC 123 ms
88,932 KB
testcase_04 AC 131 ms
88,940 KB
testcase_05 AC 128 ms
89,052 KB
testcase_06 AC 131 ms
89,180 KB
testcase_07 AC 129 ms
88,788 KB
testcase_08 AC 122 ms
88,964 KB
testcase_09 AC 125 ms
89,036 KB
testcase_10 AC 126 ms
89,124 KB
testcase_11 AC 123 ms
89,072 KB
testcase_12 AC 126 ms
89,072 KB
testcase_13 AC 118 ms
89,124 KB
testcase_14 AC 118 ms
89,032 KB
testcase_15 AC 118 ms
89,068 KB
testcase_16 AC 140 ms
90,092 KB
testcase_17 AC 151 ms
90,048 KB
testcase_18 AC 148 ms
90,120 KB
testcase_19 AC 146 ms
89,788 KB
testcase_20 AC 160 ms
90,240 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