結果
| 問題 |
No.1005 BOT対策
|
| コンテスト | |
| ユーザー |
toto
|
| 提出日時 | 2025-04-01 10:13:51 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 158 bytes |
| コンパイル時間 | 481 ms |
| コンパイル使用メモリ | 26,880 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-04-01 10:13:53 |
| 合計ジャッジ時間 | 1,678 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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);
| ~~~~~^~~~~~~~~~~~~
ソースコード
#include <stdio.h>
int main(){
char str[1000];
scanf("%s",str);
printf("%s\n",str);
char target[1000];
scanf("%s",target);
printf("%s\n",target);
}
toto