結果
問題 | No.676 C0nvertPr0b1em |
ユーザー | Pachicobue |
提出日時 | 2018-04-27 22:22:31 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 311 bytes |
コンパイル時間 | 614 ms |
コンパイル使用メモリ | 68,272 KB |
最終ジャッジ日時 | 2025-01-05 10:23:05 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 |
ソースコード
#include<iostream> using namespace std; int main() { string s;cin >> s; for(const char c: s){ if(c == 'I' or c == 'l'){ cout << 1; }else if(c == 'O' or c == 'o'){ cout << 0; } else { cout << c; } } cout << endl; return 0; }