about summary refs log tree commit diff
path: root/others/153x/061.py
diff options
context:
space:
mode:
Diffstat (limited to 'others/153x/061.py')
-rwxr-xr-xothers/153x/061.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/others/153x/061.py b/others/153x/061.py
new file mode 100755
index 0000000..1535ff9
--- /dev/null
+++ b/others/153x/061.py
@@ -0,0 +1,7 @@
+#!/usr/bin/env python3
+from collections import deque
+with open('CLIST.INP') as fi, open('CLIST.OUT', 'w') as fo:
+    n, k, l = map(int, fi.readline().split())
+    d = deque(map(int, fi.readline().split()))
+    d.rotate(int(fi.read()) * (l - k) % n)
+    print(*d, file=fo)