結果

問題 No.739 大事なことなので2度言います
ユーザー NewbiekunNewbiekun
提出日時 2019-02-20 16:00:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 3,704 ms
コンパイル使用メモリ 77,480 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-11-06 23:04:44
合計ジャッジ時間 5,713 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
39,908 KB
testcase_01 AC 128 ms
41,084 KB
testcase_02 AC 115 ms
40,420 KB
testcase_03 AC 126 ms
41,200 KB
testcase_04 AC 131 ms
41,372 KB
testcase_05 AC 128 ms
41,040 KB
testcase_06 AC 128 ms
41,324 KB
testcase_07 AC 131 ms
41,468 KB
testcase_08 AC 129 ms
41,264 KB
testcase_09 AC 132 ms
41,344 KB
testcase_10 AC 131 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No739
{
	public static void main(String args[])
	{
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int l = s.length();

		String ans = "";
		String h = s.substring( 0, l/2 );
		String r = s.substring( l/2, l );

// 文字列の比較にはequalsメソッドを使う
		if( h.equals(r) ){ ans = "YES"; }
		else{ ans = "NO"; }

		System.out.println( ans );
	}
}
0