結果
問題 | No.432 占い(Easy) |
ユーザー | SSRS |
提出日時 | 2020-08-07 06:43:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 457 bytes |
コンパイル時間 | 549 ms |
コンパイル使用メモリ | 67,088 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 14:00:07 |
合計ジャッジ時間 | 1,439 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 4 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 4 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 4 ms
6,940 KB |
ソースコード
#include <iostream> #include <string> using namespace std; string f(string S){ int N = S.size(); if (N == 1){ return S; } else { string ans; for (int i = 0; i < N - 1; i++){ int a = S[0] - '0'; int b = S[1] - '0'; if (a + b <= 9){ ans += '0' + a + b; } else { ans += '0' + a + b - 9; } } return f(ans); } } int main(){ int T; cin >> T; for (int i = 0; i < T; i++){ string S; cin >> S; cout << f(S) << endl; } }