結果

問題 No.434 占い
ユーザー ei1333333ei1333333
提出日時 2016-10-14 22:51:20
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 426 bytes
コンパイル時間 1,536 ms
コンパイル使用メモリ 158,780 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-22 08:13:44
合計ジャッジ時間 16,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 2 ms
8,832 KB
testcase_02 AC 2 ms
10,624 KB
testcase_03 AC 2 ms
8,704 KB
testcase_04 AC 2 ms
10,624 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 102 ms
5,248 KB
testcase_09 AC 13 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 16 ms
5,248 KB
testcase_13 AC 102 ms
5,248 KB
testcase_14 AC 12 ms
5,248 KB
testcase_15 TLE -
testcase_16 AC 1,010 ms
5,248 KB
testcase_17 AC 108 ms
5,248 KB
testcase_18 AC 17 ms
5,248 KB
testcase_19 AC 19 ms
5,248 KB
testcase_20 AC 139 ms
5,248 KB
testcase_21 TLE -
testcase_22 AC 1,008 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 1,004 ms
5,248 KB
testcase_25 TLE -
testcase_26 AC 1,624 ms
5,248 KB
testcase_27 AC 44 ms
5,248 KB
testcase_28 AC 35 ms
5,248 KB
testcase_29 AC 26 ms
5,248 KB
testcase_30 AC 111 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main()
{
  int T;
  cin >> T;
  while(T--) {
    string S;
    cin >> S;
    for(int i = 0; i < S.size(); i++) S[i] -= '0';
    while(S.size() > 1) {
      for(int i = 0; i < S.size() - 1; i++) {
        S[i] = (S[i] + S[i + 1]) / 10 + (S[i] + S[i + 1]) % 10;
      }
      S.pop_back();
    }

    for(int i = 0; i < S.size(); i++) S[i] += '0';
    cout << S << endl;
  }
}
0