結果
問題 |
No.1721 [Cherry 3rd Tune N] 麗しきNumber
|
ユーザー |
![]() |
提出日時 | 2024-06-15 13:04:33 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 395 bytes |
コンパイル時間 | 2,060 ms |
コンパイル使用メモリ | 167,184 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-15 13:04:37 |
合計ジャッジ時間 | 3,638 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,m,n) for(int i=m; i<n; ++i) #define repl(i,m,n) for(ll i=m; i<n; ++i) int main(){ string N; cin >> N; bool four = false, six = false; for(char c : N){ if(c == '4') four = true; if(c == '6') six = true; } cout << (four & six ? "Beautiful" : "...") << endl; return 0; }