結果

問題 No.739 大事なことなので2度言います
ユーザー マサマサ
提出日時 2022-01-16 23:41:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,072 bytes
コンパイル時間 3,899 ms
コンパイル使用メモリ 84,328 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-11-23 12:39:06
合計ジャッジ時間 4,548 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 129 ms
40,860 KB
testcase_02 AC 137 ms
41,492 KB
testcase_03 AC 132 ms
41,172 KB
testcase_04 AC 139 ms
41,556 KB
testcase_05 AC 132 ms
41,332 KB
testcase_06 WA -
testcase_07 AC 124 ms
40,572 KB
testcase_08 AC 137 ms
41,616 KB
testcase_09 AC 132 ms
40,980 KB
testcase_10 AC 129 ms
41,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

        if (s.length() % 2 == 1) {
            System.out.println("NO");
            System.exit(0);
        }

        String[] a = new String[s.length() / 2];
        String[] b = new String[s.length() / 2];

        for (int i = 0; i < s.length() / 2; i++) {
            a[i] = String.valueOf(s.charAt(i));
        }

        for (int j = 0; j < s.length() / 2; j++) {
            b[j] = String.valueOf(s.charAt(s.length() / 2 + j));
        }

        int flg = 0;
        for (int k = 0; k < s.length() / 2; k++) {
          if (a[k].equals(b[k])) {
            flg += 1;
          }
        }

        if (flg == s.length() / 2) {
          System.out.println("YES");
        }

        sc.close();

        /*
        for (String v : a) {
          System.out.print(v);
        }
        System.out.println();
        for (String v : b) {
          System.out.print(v);
        }
        */
    }
}
0