結果

問題 No.9006 マルチバイト文字テスト(テスト用)
ユーザー snukesnuke
提出日時 2015-04-08 20:27:30
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-07-04 13:18:49
合計ジャッジ時間 516 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys
import codecs
sys.stdin  = codecs.getreader('utf8')(sys.stdin)
sys.stdout = codecs.getwriter('utf8')(sys.stdout)

s = sys.stdin.read()
print "".join(list(s)[::-1])
0