結果
問題 | No.2246 1333-like Number |
ユーザー |
![]() |
提出日時 | 2023-03-17 21:25:57 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 50 ms / 2,000 ms |
コード長 | 211 bytes |
コンパイル時間 | 318 ms |
コンパイル使用メモリ | 81,956 KB |
実行使用メモリ | 67,344 KB |
最終ジャッジ日時 | 2024-09-18 10:12:25 |
合計ジャッジ時間 | 2,098 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
res=[] for i in range(1,10): for j in range(i+1,10): res.append(10*i+j) N=int(input()) N-=1 A=N//36 B=N%36 a,b=res[B]//10,res[B]%10 print(a,end="") for i in range(A+1): print(b,end="") print()