結果
問題 | No.434 占い |
ユーザー | Kmcode1 |
提出日時 | 2016-10-14 23:15:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,179 bytes |
コンパイル時間 | 1,719 ms |
コンパイル使用メモリ | 163,808 KB |
実行使用メモリ | 12,016 KB |
最終ジャッジ日時 | 2024-11-22 10:10:54 |
合計ジャッジ時間 | 24,812 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
12,016 KB |
testcase_01 | AC | 2 ms
10,496 KB |
testcase_02 | AC | 2 ms
9,216 KB |
testcase_03 | AC | 2 ms
10,496 KB |
testcase_04 | AC | 2 ms
10,624 KB |
testcase_05 | AC | 2 ms
11,964 KB |
testcase_06 | AC | 2 ms
10,624 KB |
testcase_07 | AC | 3 ms
8,960 KB |
testcase_08 | AC | 1,149 ms
10,624 KB |
testcase_09 | AC | 96 ms
9,088 KB |
testcase_10 | AC | 15 ms
10,624 KB |
testcase_11 | AC | 4 ms
5,248 KB |
testcase_12 | AC | 4 ms
5,248 KB |
testcase_13 | AC | 1,155 ms
5,248 KB |
testcase_14 | AC | 97 ms
5,248 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | AC | 952 ms
5,248 KB |
testcase_18 | AC | 133 ms
5,248 KB |
testcase_19 | AC | 31 ms
5,248 KB |
testcase_20 | AC | 21 ms
5,248 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | TLE | - |
testcase_25 | AC | 11 ms
5,248 KB |
testcase_26 | TLE | - |
testcase_27 | AC | 375 ms
5,248 KB |
testcase_28 | AC | 291 ms
5,248 KB |
testcase_29 | AC | 47 ms
5,248 KB |
testcase_30 | AC | 22 ms
10,088 KB |
コンパイルメッセージ
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[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(); } printf("%d\n", v[0].first); } return 0; }