結果

問題 No.9006 マルチバイト文字テスト(テスト用)
ユーザー snukesnuke
提出日時 2015-04-08 20:27:30
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 6,632 KB
実行使用メモリ 5,980 KB
最終ジャッジ日時 2023-09-17 18:54:39
合計ジャッジ時間 595 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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