結果
問題 | No.434 占い |
ユーザー | Kmcode1 |
提出日時 | 2016-10-14 23:27:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,371 bytes |
コンパイル時間 | 2,899 ms |
コンパイル使用メモリ | 164,188 KB |
実行使用メモリ | 11,992 KB |
最終ジャッジ日時 | 2024-11-22 06:21:27 |
合計ジャッジ時間 | 27,373 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
11,992 KB |
testcase_01 | AC | 2 ms
10,496 KB |
testcase_02 | AC | 2 ms
10,496 KB |
testcase_03 | AC | 2 ms
9,088 KB |
testcase_04 | AC | 2 ms
10,496 KB |
testcase_05 | AC | 2 ms
11,888 KB |
testcase_06 | AC | 2 ms
9,216 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1,175 ms
10,496 KB |
testcase_09 | AC | 98 ms
8,960 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 4 ms
5,248 KB |
testcase_13 | AC | 1,158 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 22 ms
5,248 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | TLE | - |
testcase_25 | AC | 12 ms
5,248 KB |
testcase_26 | TLE | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:30:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 30 | scanf("%s", buf); | ~~~~~^~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; int t; char buf[100002]; vector<pair<int,int> > v; void reset(vector<pair<int, int> > &r){ vector<pair<int, int> > f; int pr = r[0].first; int cnt = 0; for (int i = 0; i < r.size(); i++){ if (pr == r[i].first){ cnt += r[i].second; } else{ f.push_back(make_pair(pr, cnt)); pr = r[i].first; cnt = r[i].second; } } f.push_back(make_pair(pr, cnt)); r = f; } int main(){ cin >> t; while (t--){ scanf("%s", buf); v.clear(); int siz = strlen(buf); for (int i = 0; i < siz; i++){ v.push_back(make_pair(buf[i] - '0', 1)); } reset(v); while (v.size()>1||(v.size()==1&&v[0].second>1)){ vector<pair<int,int> > tmp; int pr = -1; for (int i = 0; i < v.size(); i++){ if (v[i].second > 1){ int K = v[i].first + v[i].first; if (K >= 10){ K %= 10; K++; } tmp.push_back(make_pair(K, v[i].second - 1)); } if (i + 1 < v.size()){ int F = v[i].first + v[i + 1].first; if (F >= 10){ F %= 10; F++; } tmp.push_back(make_pair(F,1) ); } } v = tmp; reset(v); tmp.clear(); bool ng = false; for (int i = 0; i < v.size(); i++){ if (v[i].first == 3 || v[i].first == 6){ continue; } ng = true; break; } if (ng == false)break; } printf("%d\n", v[0].first); } return 0; }