結果

問題 No.739 大事なことなので2度言います
ユーザー YamaKasaYamaKasa
提出日時 2018-10-05 21:26:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 2,466 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 54,624 KB
最終ジャッジ日時 2024-11-20 16:35:09
合計ジャッジ時間 4,586 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,088 KB
testcase_01 AC 131 ms
54,432 KB
testcase_02 AC 130 ms
54,080 KB
testcase_03 AC 130 ms
53,876 KB
testcase_04 AC 129 ms
54,156 KB
testcase_05 AC 130 ms
54,624 KB
testcase_06 AC 135 ms
53,968 KB
testcase_07 AC 132 ms
54,152 KB
testcase_08 AC 130 ms
54,012 KB
testcase_09 AC 129 ms
54,300 KB
testcase_10 AC 129 ms
54,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		if(S.length() % 2 != 0) {
			System.out.println("NO");
		}else {
			int l = S.length();
			String s = S.substring(0, l / 2);
			if(s.equals(S.substring(l / 2, l))) {
				System.out.println("YES");
			}else {
				System.out.println("NO");
			}
		}
	}
}
0