結果
問題 | No.1020 Reverse |
ユーザー | n_gojo |
提出日時 | 2020-04-13 13:44:43 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 537 bytes |
コンパイル時間 | 3,796 ms |
コンパイル使用メモリ | 74,244 KB |
実行使用メモリ | 44,264 KB |
最終ジャッジ日時 | 2024-09-24 19:30:34 |
合計ジャッジ時間 | 8,419 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | OLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
import java.util.Scanner; public class No1020 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int k = sc.nextInt(); String str = sc.next(); char[] c = str.toCharArray(); for(int i=0;i<=(n-k);i++) { char[] newC = c.clone(); System.out.println(newC); for(int j=0;j<k;j++){ newC[i+j]=c[i+(k-j)-1]; } c=newC; } System.out.println(c); } }