結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー zerofzerof
提出日時 2022-05-11 22:33:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 81,716 KB
実行使用メモリ 53,548 KB
最終ジャッジ日時 2024-07-19 08:18:59
合計ジャッジ時間 2,031 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,120 KB
testcase_01 AC 33 ms
52,928 KB
testcase_02 AC 33 ms
52,136 KB
testcase_03 AC 32 ms
51,824 KB
testcase_04 AC 31 ms
52,604 KB
testcase_05 AC 31 ms
52,764 KB
testcase_06 AC 33 ms
52,632 KB
testcase_07 AC 33 ms
53,364 KB
testcase_08 AC 33 ms
51,968 KB
testcase_09 AC 34 ms
52,124 KB
testcase_10 AC 34 ms
52,204 KB
testcase_11 AC 36 ms
51,924 KB
testcase_12 AC 32 ms
53,092 KB
testcase_13 AC 33 ms
51,668 KB
testcase_14 AC 33 ms
51,768 KB
testcase_15 AC 32 ms
52,104 KB
testcase_16 AC 35 ms
52,484 KB
testcase_17 AC 33 ms
53,032 KB
testcase_18 AC 33 ms
51,972 KB
testcase_19 AC 34 ms
52,796 KB
testcase_20 AC 34 ms
52,624 KB
testcase_21 AC 32 ms
52,144 KB
testcase_22 AC 32 ms
51,828 KB
testcase_23 AC 33 ms
52,232 KB
testcase_24 AC 33 ms
53,548 KB
testcase_25 AC 33 ms
51,740 KB
testcase_26 AC 32 ms
52,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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