結果

問題 No.1005 BOT対策
ユーザー toto
提出日時 2025-04-01 10:13:02
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 26,752 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-04-01 10:13:03
合計ジャッジ時間 1,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 28
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%s",str);
      |         ~~~~~^~~~~~~~~~
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%s",target);
      |         ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(){
	
	char str[1000];
	scanf("%s",str);
	printf("%s\n",str);
	char target[1000];
	scanf("%s",target);
	printf("%s\n",str);
	
}
0