結果
問題 | No.8090 Knapsack Function |
ユーザー | nasubi24 |
提出日時 | 2022-04-01 21:26:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 113 ms / 2,000 ms |
コード長 | 136 bytes |
コンパイル時間 | 547 ms |
コンパイル使用メモリ | 82,536 KB |
実行使用メモリ | 76,416 KB |
最終ジャッジ日時 | 2024-11-20 08:08:05 |
合計ジャッジ時間 | 2,110 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
n=int(input()) for i in range(n): u,v=map(int,input().split()) if v==1: print("Yes") break else: print("No")