結果
問題 | No.216 FAC |
ユーザー | umashika |
提出日時 | 2016-02-27 02:36:25 |
言語 | C90 (gcc 12.3.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 392 bytes |
コンパイル時間 | 254 ms |
コンパイル使用メモリ | 25,344 KB |
最終ジャッジ日時 | 2025-01-27 08:16:53 |
合計ジャッジ時間 | 845 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.c: In function 'main': main.c:13:3: error: C++ style comments are not allowed in ISO C90 13 | //score[0]がk君の点数 | ^ main.c:13:3: note: (this will be reported only once per input file)
ソースコード
#include<stdio.h> int main() { int n; int a[101]={0}; int i; int score[101]={0}; int b; scanf("%d",&n); //score[0]がk君の点数 for(i=0;i<n;i++){ scanf("%d",&a[i]); } for(i=0;i<n;i++){ scanf("%d",&b); score[b] += a[i]; } for(i=1;i<=100;i++){ if(score[0]<score[i]){ printf("NO\n"); return 0; } } printf("YES\n"); return 0; }