結果
| 問題 |
No.432 占い(Easy)
|
| コンテスト | |
| ユーザー |
Naoyk1212
|
| 提出日時 | 2016-10-14 22:55:55 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 8 ms / 2,000 ms |
| コード長 | 450 bytes |
| コンパイル時間 | 1,803 ms |
| コンパイル使用メモリ | 158,452 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-22 08:30:10 |
| 合計ジャッジ時間 | 2,318 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 22 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
void solve(){
string str;
cin >> str;
for(int i = 0; i < str.length() - 1; i++){
for(int j = 0; j < str.length() - 1; j++){
int a;
a = str[j] - '0' + str[j + 1] - '0';
if(a >= 10){
a = a % 10 + a / 10;
}
str[j] = '0' + a;
}
}
cout << str[0] << endl;
}
int main(){
int t;
cin >> t;
for(int i = 0; i < t; i++){
solve();
}
return 0;
}
Naoyk1212