結果

問題 No.349 干支の置き物
ユーザー focusfocus
提出日時 2018-02-17 17:38:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 804 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 69,792 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 12:15:22
合計ジャッジ時間 1,481 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 WA -
testcase_20 AC 2 ms
6,940 KB
testcase_21 WA -
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 WA -
testcase_27 AC 2 ms
6,940 KB
testcase_28 WA -
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:10:18: warning: 'N' is used uninitialized [-Wuninitialized]
   10 |     for(int i=0;i<N;i++){
      |                 ~^~
main.cpp:9:9: note: 'N' was declared here
    9 |     int N,a[12];
      |         ^
main.cpp:27:15: warning: 'a' is used uninitialized [-Wuninitialized]
   27 |         if(a[i]>(N+1)/2){
      |            ~~~^
main.cpp:9:11: note: 'a' declared here
    9 |     int N,a[12];
      |           ^

ソースコード

diff #

#include<iostream>
#include<string>
#include<cstdio>
#include<map>
#include<cstring>
using namespace std;

int main(){
    int N,a[12];
    for(int i=0;i<N;i++){
        char s[100];
        cin >> s;
		if(strcmp(s,"ne")==0)a[0]++;
		else if(strcmp(s,"ushi")==0)a[1]++;
		else if(strcmp(s,"tora")==0)a[2]++;
		else if(strcmp(s,"u")==0)a[3]++;
		else if(strcmp(s,"tatsu")==0)a[4]++;
		else if(strcmp(s,"mi")==0)a[5]++;
		else if(strcmp(s,"uma")==0)a[6]++;
		else if(strcmp(s,"hitsuji")==0)a[7]++;
		else if(strcmp(s,"saru")==0)a[8]++;
		else if(strcmp(s,"tori")==0)a[9]++;
		else if(strcmp(s,"inu")==0)a[10]++;
		else if(strcmp(s,"i")==0)a[11]++;
    }
    for(int i=0;i<12;i++){
        if(a[i]>(N+1)/2){
            cout << "NO";
            return 0;
        }
    }
    cout << "YES"; 
    return 0;
}
0