結果
| 問題 |
No.3035 文字列のみの反転
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-03-01 14:45:48 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 109 bytes |
| コンパイル時間 | 358 ms |
| コンパイル使用メモリ | 82,348 KB |
| 実行使用メモリ | 54,348 KB |
| 最終ジャッジ日時 | 2025-03-01 14:45:50 |
| 合計ジャッジ時間 | 1,825 ms |
|
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 WA * 6 |
ソースコード
s=input() t='' u='' for i in range(len(s)): if 47<ord(s[i])<56: t+=s[i] else: u+=s[i] print(u[::-1]+t)