結果
問題 | No.349 干支の置き物 |
ユーザー | kotamanegi |
提出日時 | 2016-03-11 23:56:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 968 bytes |
コンパイル時間 | 961 ms |
コンパイル使用メモリ | 89,900 KB |
実行使用メモリ | 355,456 KB |
最終ジャッジ日時 | 2024-09-25 01:33:52 |
合計ジャッジ時間 | 67,167 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | RE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | RE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
コンパイルメッセージ
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); | ~~~~~^~~~~~~~~~
ソースコード
#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 + 90000000, 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!