結果
問題 | No.8090 Knapsack Function |
ユーザー | Nzt3 |
提出日時 | 2022-04-01 21:58:29 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 250 bytes |
コンパイル時間 | 1,523 ms |
コンパイル使用メモリ | 164,524 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-20 09:12:39 |
合計ジャッジ時間 | 2,544 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin>>N; for(int i=0,a,b;i<N;i++){ cin>>a>>b; if(b==1){ cout<<"Yes\n"; return 0; } } cout<<"No\n"; }