結果

問題 No.434 占い
ユーザー butter_rollbutter_roll
提出日時 2016-10-15 03:12:22
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 522 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 67,408 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-11-22 10:38:11
合計ジャッジ時間 12,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
12,800 KB
testcase_01 AC 4 ms
14,592 KB
testcase_02 AC 4 ms
12,544 KB
testcase_03 AC 4 ms
14,464 KB
testcase_04 AC 5 ms
12,544 KB
testcase_05 AC 5 ms
7,296 KB
testcase_06 AC 6 ms
7,168 KB
testcase_07 AC 5 ms
7,296 KB
testcase_08 AC 46 ms
7,424 KB
testcase_09 AC 9 ms
7,424 KB
testcase_10 AC 5 ms
7,168 KB
testcase_11 AC 6 ms
7,296 KB
testcase_12 AC 18 ms
7,296 KB
testcase_13 AC 45 ms
7,296 KB
testcase_14 AC 9 ms
7,424 KB
testcase_15 TLE -
testcase_16 AC 410 ms
7,424 KB
testcase_17 AC 47 ms
7,424 KB
testcase_18 AC 11 ms
7,296 KB
testcase_19 AC 19 ms
7,296 KB
testcase_20 AC 137 ms
7,296 KB
testcase_21 TLE -
testcase_22 AC 409 ms
7,424 KB
testcase_23 AC 4 ms
7,296 KB
testcase_24 AC 409 ms
7,296 KB
testcase_25 TLE -
testcase_26 AC 648 ms
7,296 KB
testcase_27 AC 22 ms
7,296 KB
testcase_28 AC 17 ms
7,168 KB
testcase_29 AC 24 ms
7,424 KB
testcase_30 AC 105 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <algorithm>
#include <iostream>
#include <vector>
#include <iomanip>
#include <typeinfo>
#include <string>
using namespace std;


int main(void){

  int T,i,j,k;
  string S;
  int s[1010100];
  int t;
  cin>>T;
  char c;
  getchar();

  while(T>=1){
    k=0;
    while((c=getchar())!='\n'){
      s[k]=c-'0';
      k++;
    }
    for(i=0;i<k-1;i++){
      for(j=0;j<k-1-i;j++){
        s[j]=s[j]+s[j+1];
        if(s[j]>9) s[j]-=9;
      }
    }
    cout<<s[0]<<endl;
    T--;
  }

  return 0;
}
0