結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー YamaguchiT6YamaguchiT6
提出日時 2021-11-04 15:35:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-14 13:53:40
合計ジャッジ時間 1,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  N = int(input())
  if "4" in str(N)  and  "6" in str(N):
    print("Beatiful")
  else:
    print("...")  
if __name__ == "__main__":
    main()
0