結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー zerof
提出日時 2022-05-11 22:33:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 128 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-07-19 08:18:02
合計ジャッジ時間 2,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

num_set = set(map(int, input()[::1]))
print(num_set)
if 4 in num_set and 6 in num_set:
  print("Beautiful")
else:
  print("...")
0