結果

問題 No.216 FAC
ユーザー nCk_cvnCk_cv
提出日時 2015-08-03 02:37:04
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 891 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 53,760 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-07-18 00:56:11
合計ジャッジ時間 6,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 WA -
testcase_07 AC 0 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 0 ms
6,940 KB
testcase_10 AC 0 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 0 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 TLE -
testcase_26 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~
main.cpp:25:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   25 |         scanf("%d",&a[n]);
      |         ~~~~~^~~~~~~~~~~~
main.cpp:28:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |         scanf("%d",&b[n]);
      |         ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <climits>
#include <vector>
#include <algorithm>
#include <queue>
#include <stdio.h>
#include <string>
#include <memory.h>


#define REP(i,n) for(int i=0;i<(int)n;++i)
#define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();++i)
#define ALL(c) (c).begin(), (c).end()
#define INF 99999999

using namespace std;

int main() {
    int n;
    scanf("%d",&n);
    
    int a[n];
    int b[n];
    for(int i = 0; i < n; i++) {
        scanf("%d",&a[n]);
    }
    for(int i = 0; i < n; i++) {
        scanf("%d",&b[n]);
    }
    int score[n+1];
    memset(score, 0, n+1);
    for(int i = 0; i < n; i++) {
        score[b[i]] += a[i];
    }
    
    for(int i = 1; i < n+1; i++) {
        if(score[0] < score[i]) {
            printf("NO\n");
            return 0;
        }
    }
    printf("YES\n");
    
    
    
    
    
    
    
    
    

}







0