結果

問題 No.1020 Reverse
ユーザー syunsukesyunsuke
提出日時 2020-11-03 21:23:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 70 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 86,828 KB
実行使用メモリ 72,392 KB
最終ジャッジ日時 2023-09-29 15:01:23
合計ジャッジ時間 3,076 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,416 KB
testcase_01 AC 69 ms
71,284 KB
testcase_02 AC 70 ms
71,096 KB
testcase_03 WA -
testcase_04 AC 70 ms
71,276 KB
testcase_05 AC 69 ms
71,128 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 70 ms
71,900 KB
testcase_09 AC 71 ms
71,204 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 70 ms
72,200 KB
testcase_13 AC 71 ms
72,104 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 71 ms
72,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
S=input()

ans=S[K-1:]+S[:K-1]
print(ans)
0