結果
問題 |
No.432 占い(Easy)
|
ユーザー |
|
提出日時 | 2019-02-01 03:04:49 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 8 ms / 2,000 ms |
コード長 | 495 bytes |
コンパイル時間 | 1,980 ms |
コンパイル使用メモリ | 168,324 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-19 05:59:44 |
合計ジャッジ時間 | 2,729 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 22 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; for(int i=0; i<n; i++){ string s; cin >> s; while((int)s.size() != 1){ string tmp = ""; for(int j=0; j<s.size()-1; j++){ int res = (int)(s[j] - '0') + (int)(s[j+1] - '0'); res = res%10 + res/10; tmp += to_string(res); } s = tmp; } cout << s << endl; } return 0; }