結果
問題 |
No.1591 Two Digits
|
ユーザー |
|
提出日時 | 2023-02-25 00:02:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 197 bytes |
コンパイル時間 | 1,474 ms |
コンパイル使用メモリ | 165,712 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 06:16:45 |
合計ジャッジ時間 | 2,205 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if (10 <= n && n < 100) { cout << "Yes" << endl; } else { cout << "No" << endl; } }