結果
| 問題 |
No.842 初詣
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-06-28 21:30:04 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 550 bytes |
| コンパイル時間 | 649 ms |
| コンパイル使用メモリ | 74,744 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-02 04:23:56 |
| 合計ジャッジ時間 | 1,405 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
#include<iostream>
#include<algorithm>
#include<vector>
#include <string>
#include<math.h>
#include<bitset>
typedef long long int ll;
using namespace std;
int main(){
int a,b,c,d,e,f,g; cin >>a>>b>>c>>d>>e>>f>>g;
for(int i=0;i<a+1;i++){
for(int j=0;j<b+1;j++){
for(int k=0;k<c+1;k++){
for(int h=0;h<d+1;h++){
for(int s=0;s<e+1;s++){
for(int t=0;t<f+1;t++){
if(500*i+100*j+50*k+h*10+s*5+t==g){
cout << "YES" << endl;
return 0;
}
}
}
}
}
}
}
cout << "NO" << endl;
return 0;
}