結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,628 KB
testcase_01 AC 126 ms
41,256 KB
testcase_02 AC 127 ms
41,136 KB
testcase_03 AC 128 ms
41,464 KB
testcase_04 AC 127 ms
41,508 KB
testcase_05 AC 127 ms
41,080 KB
testcase_06 AC 126 ms
41,064 KB
testcase_07 AC 126 ms
41,172 KB
testcase_08 AC 126 ms
41,252 KB
testcase_09 AC 129 ms
41,092 KB
testcase_10 WA -
testcase_11 AC 127 ms
41,324 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 130 ms
40,944 KB
testcase_16 AC 114 ms
41,116 KB
testcase_17 WA -
testcase_18 AC 128 ms
41,324 KB
testcase_19 AC 129 ms
41,068 KB
testcase_20 WA -
testcase_21 AC 126 ms
41,668 KB
testcase_22 AC 125 ms
41,272 KB
testcase_23 AC 125 ms
41,076 KB
testcase_24 WA -
testcase_25 AC 125 ms
41,116 KB
testcase_26 AC 126 ms
41,572 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("6")) {
                flg4 += 1;
            }
            if(tmp.equals("6")) {
                flg6 += 1;
            }
        }
        
        if(flg4 > 0 && flg6 > 0) {
            System.out.println("Beautiful");
        }else {
            System.out.println("...");
        }
        
        
    }
}
0