結果
| 問題 |
No.256 桁の数字を入れ替え (2)
|
| コンテスト | |
| ユーザー |
soupesuteaka
|
| 提出日時 | 2016-03-02 18:10:54 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 146 ms / 2,000 ms |
| コード長 | 246 bytes |
| コンパイル時間 | 183 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 12,068 KB |
| 最終ジャッジ日時 | 2024-09-24 13:30:54 |
| 合計ジャッジ時間 | 1,139 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
#coding: UTF-8
import sys
import re
import itertools
from collections import deque
### defs ###
### main ###
S = sys.stdin.readline().strip('\n')
N = []
for s in S:
N.append(int(s))
N.sort()
N.reverse()
for n in N:
print(n,end='')
print('')
soupesuteaka