結果
問題 | No.423 ハムスター語初級(数詞) |
ユーザー | Elk |
提出日時 | 2018-07-21 19:56:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,140 bytes |
コンパイル時間 | 1,658 ms |
コンパイル使用メモリ | 169,224 KB |
実行使用メモリ | 254,552 KB |
最終ジャッジ日時 | 2024-06-07 20:04:37 |
合計ジャッジ時間 | 5,188 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int func1(string str){ int ans = 0, i; for(i = 0; i < str.size(); i++){ if(str[i] == '1'){ ans += pow(2, str.size() - 1 - i); } } return ans; } string func2(int num){ string str, tmp; int i; while(1){ tmp += to_string(num%2); num /= 2; //printf("num %d\n", num); if(num == 1){ tmp += to_string(num%2); break; } } for(i = 0; i < tmp.size(); i++){ if(tmp[tmp.size() - 1 - i] == 1){ str += "hamu"; }else{ str += "ham"; } } return str; } int main(){ string str, ans; int cnt, i, tmp; cin >> str; if(str == "ham"){ cout << 0 << endl; }else{ for(i = 0; i < str.size(); i += cnt){ if(strncmp(&str[i], "hamu", 4) == 0){ ans += '1'; cnt = 4; }else{ ans += '0'; cnt = 3; } } } tmp = func1(ans); ans = func2(tmp*2); cout << ans << endl; return 0; }