結果
問題 | No.676 C0nvertPr0b1em |
ユーザー | butsurizuki |
提出日時 | 2017-07-03 17:22:11 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 264 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 21,248 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 12:28:33 |
合計ジャッジ時間 | 1,029 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%s",s); | ^~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> int main(void) { int i,l; char s[1024]; scanf("%s",s); l = strlen(s); for(i = 0;i < l;i++){ if(s[i] == 'o' || s[i] == 'O'){s[i] = '0';} if(s[i] == 'l' || s[i] == 'I'){s[i] = '1';} } printf("%s\n",s); return 0; }