結果
問題 | No.739 大事なことなので2度言います |
ユーザー | DRDSISN |
提出日時 | 2018-12-03 01:13:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,010 bytes |
コンパイル時間 | 5,278 ms |
コンパイル使用メモリ | 82,544 KB |
実行使用メモリ | 52,400 KB |
最終ジャッジ日時 | 2024-07-01 05:31:55 |
合計ジャッジ時間 | 6,119 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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.io.ObjectInputStream.GetField; import java.util.Arrays; import java.util.Scanner; import javax.swing.Box; public class yuki3 { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner sc = new Scanner(System.in); String A = sc.nextLine(); if(A.length() % 2 == 0) { String[] Bc = A.split(""); String[] Box1 = new String[A.length()/2]; String[] Box2 = new String[A.length()/2]; for(int i =0 ; i < A.length()/2;i++) { Box1[i]=Bc[i]; } for(int i =0 ; i < Box1.length;i++) { System.out.println(Box1[i]); } for(int i = A.length()/2 ; i < A.length();i++) { Box2[i-A.length()/2]=Bc[i]; } for(int i =0 ; i < Box2.length;i++) { System.out.println(Box2[i]); } if( Arrays.equals(Box1, Box2)) { System.out.println("できています"); }else { System.out.println("できていません"); } }else { System.out.println("ここにいます"); } } }