結果
問題 | No.1591 Two Digits |
ユーザー | shiomusubi496 |
提出日時 | 2021-07-09 21:20:24 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 158 bytes |
コンパイル時間 | 2,050 ms |
コンパイル使用メモリ | 192,688 KB |
最終ジャッジ日時 | 2025-01-22 20:14:56 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; signed main(){ string S; cin>>S; if(S.size()==2)puts("Yes"); else puts("No"); }