結果
問題 |
No.494 yukicoder
|
ユーザー |
![]() |
提出日時 | 2025-03-13 17:14:34 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 225 bytes |
コンパイル時間 | 293 ms |
コンパイル使用メモリ | 24,960 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2025-03-13 17:14:35 |
合計ジャッジ時間 | 1,178 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
コンパイルメッセージ
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",str); | ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> void main(void){ char *ans = "yukicoder"; char str[10] = "test"; scanf("%s",str); for(int i = 0; i < (int)strlen(str); i++ ){ if(str[i] == '?'){ printf("%c",*(ans+i)); } } }