結果
問題 |
No.1721 [Cherry 3rd Tune N] 麗しきNumber
|
ユーザー |
![]() |
提出日時 | 2022-03-04 19:58:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 272 bytes |
コンパイル時間 | 1,444 ms |
コンパイル使用メモリ | 165,452 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 17:10:44 |
合計ジャッジ時間 | 2,317 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(void) { string N; cin >> N; if ((N.find("4") != string::npos) && (N.find("6") != string::npos)) { cout << "Beautiful" << endl; } else { cout << "..." << endl; } return 0; }