結果

問題 No.3035 文字列のみの反転
ユーザー aa a
提出日時 2025-02-28 21:22:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 63,584 KB
最終ジャッジ日時 2025-02-28 21:22:33
合計ジャッジ時間 1,642 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import heapq
import itertools
import bisect
import random
import time
from collections import deque
import sys
from cmath import exp,pi
from functools import cmp_to_key
input=sys.stdin.readline

s=list(input().rstrip())
s.reverse()
print(''.join(s))



0