結果

問題 No.676 C0nvertPr0b1em
ユーザー Elk
提出日時 2018-05-28 13:45:46
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 12:47:54
合計ジャッジ時間 1,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%s", str);
      |     ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>

int main(){
    int len, i;
    char str[1001];

    scanf("%s", str);
    len = strlen(str);

    for(i = 0; i < len; i++){
        if(str[i] == 'I' || str[i] == 'l'){
            str[i] = '1';
        }else if(str[i] == 'o' || str[i] == 'O'){
            str[i] = '0';
        }
    }
    printf("%s\n", str);

    return 0;
}
0