結果

問題 No.8090 Knapsack Function
ユーザー AuroraAurora
提出日時 2022-05-12 18:00:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 1,467 ms
コンパイル使用メモリ 167,164 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 11:58:32
合計ジャッジ時間 3,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  int N;
  cin >> N;
  bool flag = false;
  for(int i=0;i<N;i++){
    int v,w;
    cin >> v >> w;
    if(w == 1) flag = true;
  }
  if(flag) cout << "Yes" << endl;
  else cout << "No" << endl;
}
0