結果
問題 |
No.1591 Two Digits
|
ユーザー |
![]() |
提出日時 | 2021-07-10 10:03:28 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 272 bytes |
コンパイル時間 | 1,861 ms |
コンパイル使用メモリ | 191,460 KB |
最終ジャッジ日時 | 2025-01-22 23:51:57 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; using ld = long double; using pint = pair<int, int>; using pll = pair<ll, ll>; int main(){ int N; cin >> N; if((N / 10) % 10 && N / 100 == 0)cout << "Yes" << endl; else cout << "No" << endl; }