結果

問題 No.434 占い
ユーザー keikei
提出日時 2016-10-14 23:44:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 974 bytes
コンパイル時間 956 ms
コンパイル使用メモリ 99,060 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-22 06:58:49
合計ジャッジ時間 25,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
8,960 KB
testcase_02 AC 2 ms
10,624 KB
testcase_03 AC 2 ms
8,832 KB
testcase_04 AC 2 ms
9,088 KB
testcase_05 AC 2 ms
10,624 KB
testcase_06 AC 3 ms
10,624 KB
testcase_07 AC 2 ms
8,704 KB
testcase_08 AC 558 ms
10,148 KB
testcase_09 AC 58 ms
8,704 KB
testcase_10 AC 8 ms
10,624 KB
testcase_11 AC 4 ms
9,088 KB
testcase_12 AC 16 ms
10,624 KB
testcase_13 AC 548 ms
5,248 KB
testcase_14 AC 58 ms
5,248 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 558 ms
5,248 KB
testcase_18 AC 61 ms
5,248 KB
testcase_19 AC 22 ms
5,248 KB
testcase_20 AC 139 ms
6,400 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2 ms
5,248 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 208 ms
5,248 KB
testcase_28 AC 157 ms
5,248 KB
testcase_29 AC 35 ms
5,248 KB
testcase_30 AC 110 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include<stdio.h>
#include<string>
#include<iostream>
#include<cctype>
#include<cstdio>
#include<vector>
#include<stack>
#include<algorithm>
#include<math.h>
#include<set>
#include<map>
#include<iomanip>
#include<queue>
using namespace std;

int check(string s) {
	int f1, f2;
	queue<int> q;
	for (int i = 0; i < s.length();i++) {
		q.push(s[i] - '0');
	}
	int size = q.size();

	while (q.size() != 1) {
		//cout << q.size() << endl;
		if (size == 1) {
			q.pop();
			size = q.size();
			if (size == 1) break;
		}
		f1 = q.front(); q.pop();
		f2 = q.front();
		//cout << f1 << " " << f2 << " " << endl;
		if (f1 + f2 < 10) {
			q.push(f1 + f2);
		}
		else {
			q.push(1 + (f1 + f2) % 10);
		}
		size--;
	}
	return q.front();
}

int main() {
	cin.tie(0); ios::sync_with_stdio(false);
	int T; cin >> T;
	vector<string> S(T);
	for (int i = 0; i < T; i++) {
		cin >> S[i];
	}
	for (int i = 0; i < T;i++) {
		cout << check(S[i]) << endl;
	}
	return 0;
}
0