結果
| 問題 |
No.1672 404 Not Found
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-09-27 16:45:42 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 169 bytes |
| コンパイル時間 | 283 ms |
| コンパイル使用メモリ | 27,392 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-06 12:28:57 |
| 合計ジャッジ時間 | 684 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 8 WA * 4 |
ソースコード
#include <stdio.h>
int main()
{
int s;
scanf("%d", &s);
if (100 <= s && s <= 599) {
printf("Yes");
}
else {
printf("No");
}
}