結果

問題 No.739 大事なことなので2度言います
ユーザー GodNegotoGodNegoto
提出日時 2019-11-18 16:35:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 3,513 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-10-01 20:34:53
合計ジャッジ時間 5,311 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,456 KB
testcase_01 AC 121 ms
41,868 KB
testcase_02 AC 121 ms
41,576 KB
testcase_03 AC 126 ms
41,524 KB
testcase_04 AC 126 ms
41,384 KB
testcase_05 AC 112 ms
41,480 KB
testcase_06 AC 125 ms
41,520 KB
testcase_07 AC 123 ms
41,504 KB
testcase_08 AC 126 ms
41,096 KB
testcase_09 AC 126 ms
41,640 KB
testcase_10 AC 121 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.Scanner;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String S = sc.next();
		if(S.length() % 2 == 1) {
			System.out.println("NO");
		}
		else {
			String ss = S.substring(S.length() / 2);
			String sss = S.substring(0, S.length() / 2);
			if(sss.equals(ss)) {
				System.out.println("YES");
			}
			else {
				System.out.println("NO");
			}
		}
	}
}
0