結果
| 問題 | No.676 C0nvertPr0b1em |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-11-16 19:25:19 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 469µs | |
| コード長 | 328 bytes |
| 記録 | |
| コンパイル時間 | 401 ms |
| コンパイル使用メモリ | 91,144 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-09-03 18:05:35 |
| 合計ジャッジ時間 | 2,789 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <math.h>
using namespace std;
typedef long long int ll;
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
string s;cin >> s;
for(char c:s){
if(c=='I'||c=='l')cout << 1 ;
else if(c=='O'||c=='o')cout << 0;
else cout << c;
}
cout << endl;
}