結果
問題 | No.216 FAC |
ユーザー |
|
提出日時 | 2017-08-07 10:04:17 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 912 bytes |
コンパイル時間 | 1,306 ms |
コンパイル使用メモリ | 158,540 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-11 23:35:10 |
合計ジャッジ時間 | 2,526 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 WA * 8 |
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’: main.cpp:14:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | scanf("%d",&N); | ~~~~~^~~~~~~~~ main.cpp:19:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | scanf("%d",&a[i]); | ~~~~~^~~~~~~~~~~~ main.cpp:25:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 25 | scanf("%d",&b[i]); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>using namespace std;int main(int argc, char **argv){int N; //問題の個数int i; //ループカウンタint a[100]; //問題のスコアint b[100]; //問題が何番の人に解かれたint total1 = 0; //始めに解けていない数int total2 = 0; //始めに解けていない数scanf("%d",&N);//問題のスコアの入力for(i = 0;i < N;i++){scanf("%d",&a[i]);}//問題が何番の人に解かれたかの入力for(i = 0;i < N;i++){scanf("%d",&b[i]);}//始めに解けていない数と始めに解けていない数をカウントfor(i = 0;i < N;i++){if(b[i] == 0 || b[i] == 1){total1 += a[i];}else{total2 += a[i];}}if(total1 < total2){printf("NO\n");}else{printf("YES\n");}return 0;}