結果
| 問題 |
No.671 1000000007
|
| コンテスト | |
| ユーザー |
Elk
|
| 提出日時 | 2018-05-27 20:33:24 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 208 bytes |
| コンパイル時間 | 206 ms |
| コンパイル使用メモリ | 24,064 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 19:12:06 |
| 合計ジャッジ時間 | 740 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
9 | scanf("%s", str);
| ~~~~~^~~~~~~~~~~
ソースコード
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(){
char str[256];
int len;
scanf("%s", str);
len = strlen(str);
printf("%d\n", abs((len - 2) - 8));
return 0;
}
Elk