結果

問題 No.1020 Reverse
ユーザー dangodango
提出日時 2023-06-12 21:33:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 101 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 54,916 KB
最終ジャッジ日時 2024-06-11 21:30:43
合計ジャッジ時間 1,590 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,948 KB
testcase_01 AC 31 ms
52,840 KB
testcase_02 AC 32 ms
51,756 KB
testcase_03 AC 31 ms
52,960 KB
testcase_04 AC 31 ms
52,024 KB
testcase_05 AC 32 ms
52,176 KB
testcase_06 AC 32 ms
52,028 KB
testcase_07 AC 33 ms
53,884 KB
testcase_08 AC 33 ms
54,084 KB
testcase_09 AC 32 ms
54,180 KB
testcase_10 AC 33 ms
54,456 KB
testcase_11 AC 34 ms
54,672 KB
testcase_12 AC 33 ms
53,600 KB
testcase_13 AC 35 ms
54,060 KB
testcase_14 AC 35 ms
54,268 KB
testcase_15 AC 34 ms
54,268 KB
testcase_16 AC 35 ms
54,916 KB
testcase_17 AC 32 ms
54,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int,input().split())
S = input()
print(S[(K - 1):] + S[:(K - 1)][::(-1) ** (N - (K - 1))])
0