結果

問題 No.1721 [Cherry 3rd Tune N] 麗しきNumber
ユーザー マサマサ
提出日時 2021-12-28 14:39:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 41,752 KB
最終ジャッジ日時 2024-10-02 07:10:18
合計ジャッジ時間 6,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,344 KB
testcase_01 AC 125 ms
41,180 KB
testcase_02 AC 124 ms
41,264 KB
testcase_03 AC 130 ms
41,752 KB
testcase_04 AC 123 ms
41,292 KB
testcase_05 AC 106 ms
40,012 KB
testcase_06 AC 107 ms
40,272 KB
testcase_07 AC 109 ms
40,268 KB
testcase_08 AC 123 ms
41,344 KB
testcase_09 AC 122 ms
41,472 KB
testcase_10 AC 123 ms
41,244 KB
testcase_11 AC 127 ms
41,216 KB
testcase_12 AC 125 ms
41,180 KB
testcase_13 AC 122 ms
41,412 KB
testcase_14 AC 134 ms
41,340 KB
testcase_15 AC 151 ms
41,312 KB
testcase_16 AC 132 ms
41,216 KB
testcase_17 AC 114 ms
40,504 KB
testcase_18 AC 125 ms
41,272 KB
testcase_19 AC 124 ms
41,444 KB
testcase_20 AC 126 ms
41,496 KB
testcase_21 AC 127 ms
41,216 KB
testcase_22 AC 126 ms
41,400 KB
testcase_23 AC 127 ms
41,128 KB
testcase_24 AC 132 ms
41,148 KB
testcase_25 AC 129 ms
41,552 KB
testcase_26 AC 125 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String n = sc.nextLine();

        int flg4 = 0;
        int flg6 = 0;
        for(int i = 0; i < n.length(); i++) {
            String tmp = String.valueOf(n.charAt(i));
            if(tmp.equals("4")) {
                flg4 += 1;
            }
            if(tmp.equals("6")) {
                flg6 += 1;
            }
        }

        if(flg4 > 0 && flg6 > 0) {
            System.out.println("Beautiful");
        }else {
            System.out.println("...");
        }


    }
}
0