結果
| 問題 | No.1672 404 Not Found |
| コンテスト | |
| ユーザー |
noya2
|
| 提出日時 | 2021-08-05 19:04:23 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 266 bytes |
| 記録 | |
| コンパイル時間 | 6,623 ms |
| コンパイル使用メモリ | 337,444 KB |
| 実行使用メモリ | 7,968 KB |
| 最終ジャッジ日時 | 2026-06-22 09:13:52 |
| 合計ジャッジ時間 | 7,774 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
ソースコード
/*
入力 validation 付き
*/
#include "testlib.h"
#include<bits/stdc++.h>
using namespace std;
int main(){
registerValidation();
int s = inf.readInt(100,599,"s");
inf.readEoln();
cout << (s < 400 ? "No" : "Yes") << endl;
inf.readEof();
return 0;
}
noya2