結果
問題 | No.1591 Two Digits |
ユーザー | kens |
提出日時 | 2021-07-09 22:25:26 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 218 bytes |
コンパイル時間 | 2,181 ms |
コンパイル使用メモリ | 192,480 KB |
最終ジャッジ日時 | 2025-01-22 22:09:38 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (int)n; i++) using ll = long long; int main(){ string s; cin >> s; cout << (s.size() == 2 ? "Yes" : "No") << endl; return 0; }