結果
問題 | No.2323 Nafmo、A+Bをする |
ユーザー | taku-1227 |
提出日時 | 2023-05-28 15:12:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 260 bytes |
コンパイル時間 | 1,637 ms |
コンパイル使用メモリ | 167,048 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-08 07:12:54 |
合計ジャッジ時間 | 2,452 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int A, B, C; cin >> A >> B; C = A + B; string D = to_string(C); for(int i = 0; i < D.size(); i++){ if(D.at(i) == '2') D.at(i) = '0'; } C = stoi(D, 0, 2); cout << C << endl; }