結果
問題 |
No.256 桁の数字を入れ替え (2)
|
ユーザー |
![]() |
提出日時 | 2025-08-27 21:45:12 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 60 ms / 2,000 ms |
コード長 | 134 bytes |
コンパイル時間 | 350 ms |
コンパイル使用メモリ | 82,676 KB |
実行使用メモリ | 59,452 KB |
最終ジャッジ日時 | 2025-08-27 21:45:14 |
合計ジャッジ時間 | 1,431 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
import sys, math sys.setrecursionlimit(10**8) sys.set_int_max_str_digits(0) N = list(input()) N.sort(reverse=True) print(''.join(N))