結果
| 問題 |
No.1672 404 Not Found
|
| コンテスト | |
| ユーザー |
suppy193
|
| 提出日時 | 2021-10-20 11:16:29 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| コード長 | 164 bytes |
| コンパイル時間 | 116 ms |
| コンパイル使用メモリ | 19,968 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-20 06:32:24 |
| 合計ジャッジ時間 | 758 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | scanf("%d", &s);
| ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
int main(void) {
int s;
scanf("%d", &s);
if(s / 100 == 4 || s / 100 == 5){
printf("Yes\n");
}
else{
printf("No\n");
}
return 0;
}
suppy193