結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー pypypymipypypymi
提出日時 2022-01-12 10:23:59
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 1,790 ms
コンパイル使用メモリ 86,528 KB
実行使用メモリ 71,428 KB
最終ジャッジ日時 2023-08-09 15:43:32
合計ジャッジ時間 3,572 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,228 KB
testcase_01 AC 69 ms
71,304 KB
testcase_02 AC 68 ms
71,312 KB
testcase_03 AC 72 ms
71,192 KB
testcase_04 AC 70 ms
71,188 KB
testcase_05 AC 71 ms
71,308 KB
testcase_06 AC 70 ms
71,180 KB
testcase_07 AC 70 ms
71,240 KB
testcase_08 AC 67 ms
71,340 KB
testcase_09 AC 69 ms
71,164 KB
testcase_10 AC 70 ms
71,224 KB
testcase_11 AC 70 ms
71,428 KB
testcase_12 AC 69 ms
71,236 KB
testcase_13 AC 70 ms
71,232 KB
testcase_14 AC 68 ms
71,252 KB
testcase_15 AC 68 ms
71,228 KB
testcase_16 AC 69 ms
71,268 KB
testcase_17 AC 67 ms
71,152 KB
testcase_18 AC 66 ms
71,164 KB
testcase_19 AC 67 ms
71,272 KB
testcase_20 AC 73 ms
71,304 KB
testcase_21 AC 66 ms
71,220 KB
testcase_22 AC 68 ms
71,192 KB
testcase_23 AC 70 ms
71,252 KB
testcase_24 AC 70 ms
71,308 KB
testcase_25 AC 69 ms
71,188 KB
testcase_26 AC 68 ms
71,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
judge_one = [True for i in s if i=="4"]
judge_two = [True for i in s if i=="6"]
if len(judge_one)>0 and len(judge_two)>0:
    print("Beautiful")
else:
    print("...")
0