結果

問題 No.432 占い(Easy)
ユーザー tossy
提出日時 2016-10-14 22:27:02
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 899 ms
コンパイル使用メモリ 91,080 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-22 07:09:40
合計ジャッジ時間 1,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <string>
#include <cmath>
#include <cassert>
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>
#include <set>
#include <map>
#include <bitset>
using namespace std;

#define repl(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define rep(i,n) repl(i,0,n)
#define mp(a,b) make_pair(a,b)
#define pb(a) push_back(a)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cout<<#x"="<<x<<endl
#define fi first
#define se second

#define INF 2147483600

int main(){
  int tc;
  cin>>tc;
  rep(loops, tc){
    string s;
    cin>>s;
    int n=s.length();
    vector<int> vec(n);
    rep(i,n) vec[i] = s[i]-'0';
    while(n>1){
      rep(i,n-1){
        vec[i] = vec[i]+vec[i+1];
        vec[i] = vec[i]%10 + vec[i]/10;
      }
      n--;
    }
    cout<<vec[0]<<endl;
  }

  return 0;
}
0