結果

問題 No.349 干支の置き物
ユーザー kotamanegikotamanegi
提出日時 2016-03-11 23:55:22
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 966 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 88,552 KB
実行使用メモリ 12,588 KB
最終ジャッジ日時 2023-10-25 06:07:16
合計ジャッジ時間 22,330 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <iomanip>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream> 
#include<map>
#include <list>
#include <typeinfo>
using namespace std;
#define REP(a,b) for(long long a = 0;a < b;++a)
int hoge[100000000] = {};
int main() {
	//文字列をint化してからぶち込んでソート
	int n;
	scanf("%d", &n);
	REP(i, n) {
		string hogee;
		cin >> hogee;
		int queque = 0;
		for (int q = 1;q < hogee.length() + 1;++q) {
			queque += pow(10,q)*((int)hogee[q - 1]);
		}
		hoge[queque]++;
	}
	sort(hoge, hoge + 900000, greater<int>());
	int ans = n / 2;
	if (n % 2 == 1) ans++;
	if (ans >= hoge[0]) {
		cout << "YES" << endl;
	}
	else {
		cout << "NO" << endl;
	}
}
//thank you for reading my code!
0