結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー cureskol
提出日時 2021-10-29 21:21:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 176,324 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 09:23:14
合計ジャッジ時間 2,970 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;

#define REP(i,n) for(int i=0;i<(n);i++)
#define RREP(i,n) for(int i=(n-1);i>=0;i--)
#define ALL(v) v.begin(),v.end()

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  string s;cin>>s;
  bool f=false,g=false;
  for(char p:s){
    if(p=='4')f=true;
    if(p=='6')g=true;
  }
  if(f&&g)cout<<"Beautiful"<<endl;
  else cout<<"..."<<endl;
}
0