結果
問題 | No.739 大事なことなので2度言います |
ユーザー | YukimotoPG |
提出日時 | 2019-02-12 19:59:15 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 365 bytes |
コンパイル時間 | 2,166 ms |
コンパイル使用メモリ | 75,544 KB |
実行使用メモリ | 54,368 KB |
最終ジャッジ日時 | 2024-09-13 09:46:05 |
合計ジャッジ時間 | 4,106 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
import java.util.*; class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { String s = sc.next(); String ans = "Yes"; if (s.length()%2 != 0) ans = "No"; else { if (!s.substring(0,s.length()/2).equals(s.substring(s.length()/2,s.length()))) { ans = "No"; } } System.out.println(ans); } }