結果

問題 No.3090 Knapsack Function
ユーザー floraflora
提出日時 2022-04-01 21:31:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 84,268 KB
最終ジャッジ日時 2024-04-30 13:10:35
合計ジャッジ時間 2,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,956 KB
testcase_01 AC 31 ms
53,076 KB
testcase_02 AC 31 ms
52,156 KB
testcase_03 AC 31 ms
51,944 KB
testcase_04 AC 30 ms
51,948 KB
testcase_05 AC 32 ms
52,572 KB
testcase_06 AC 33 ms
52,264 KB
testcase_07 AC 33 ms
53,308 KB
testcase_08 AC 33 ms
52,704 KB
testcase_09 AC 35 ms
53,696 KB
testcase_10 AC 35 ms
53,016 KB
testcase_11 AC 35 ms
54,032 KB
testcase_12 AC 36 ms
54,428 KB
testcase_13 AC 34 ms
53,684 KB
testcase_14 AC 36 ms
53,628 KB
testcase_15 AC 36 ms
52,636 KB
testcase_16 AC 124 ms
83,696 KB
testcase_17 AC 106 ms
81,988 KB
testcase_18 AC 124 ms
82,088 KB
testcase_19 AC 122 ms
84,268 KB
testcase_20 AC 123 ms
82,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
v,w=[],[]
flag=False
for _ in range(N):
	hv,hw=map(int,input().split())
	v.append(hv)
	w.append(hw)
	if hw==1:
		flag=True

#もしwが1のものがあれば必ず単調増加になる
if flag:
	print("Yes")
else:
	print("No")
0