結果

問題 No.3090 Knapsack Function
ユーザー ikomaikoma
提出日時 2022-04-01 22:05:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 86,988 KB
最終ジャッジ日時 2024-04-30 14:08:06
合計ジャッジ時間 3,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,072 KB
testcase_01 AC 40 ms
52,744 KB
testcase_02 AC 41 ms
52,892 KB
testcase_03 AC 40 ms
52,488 KB
testcase_04 AC 40 ms
52,204 KB
testcase_05 AC 40 ms
53,096 KB
testcase_06 AC 43 ms
53,568 KB
testcase_07 AC 43 ms
53,000 KB
testcase_08 AC 43 ms
52,892 KB
testcase_09 AC 42 ms
52,964 KB
testcase_10 AC 40 ms
52,932 KB
testcase_11 AC 43 ms
53,148 KB
testcase_12 AC 41 ms
53,228 KB
testcase_13 AC 41 ms
53,692 KB
testcase_14 AC 40 ms
52,704 KB
testcase_15 AC 41 ms
53,956 KB
testcase_16 AC 256 ms
86,628 KB
testcase_17 AC 257 ms
86,764 KB
testcase_18 AC 258 ms
86,988 KB
testcase_19 AC 257 ms
86,372 KB
testcase_20 AC 260 ms
86,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
VW=[list(map(int,input().split())) for _ in range(N)]
VW.sort(key=lambda x:x[1])

print("Yes" if VW[0][1]==1 else "No")
0