結果
問題 | No.327 アルファベット列 |
ユーザー |
👑 ![]() |
提出日時 | 2020-10-14 04:34:40 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 68 ms / 2,000 ms |
コード長 | 198 bytes |
コンパイル時間 | 477 ms |
コンパイル使用メモリ | 82,208 KB |
実行使用メモリ | 63,616 KB |
最終ジャッジ日時 | 2024-07-20 18:58:51 |
合計ジャッジ時間 | 5,784 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 50 |
ソースコード
from string import ascii_uppercaseN=int(input())X=ascii_uppercasealpha=26I=alphap=1while N>=I:N-=Ip+=1I*=alphaD=""for _ in [0]*p:D=X[N%alpha]+DN//=alphaprint(D)