結果
問題 | No.1721 [Cherry 3rd Tune N] 麗しきNumber |
ユーザー | milanis48663220 |
提出日時 | 2021-10-29 21:21:41 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 975 bytes |
コンパイル時間 | 1,101 ms |
コンパイル使用メモリ | 112,896 KB |
最終ジャッジ日時 | 2025-01-25 08:19:39 |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; string n; cin >> n; bool ok4 = false, ok6 = false; for(char c: n){ if(c == '4') ok4 = true; if(c == '6') ok6 = true; } if(ok4 && ok6) cout << "Beautiful" << endl; else cout << "..." << endl; }