結果
| 問題 | No.2246 1333-like Number |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-03-17 21:37:34 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 207 bytes |
| 記録 | |
| コンパイル時間 | 1,385 ms |
| コンパイル使用メモリ | 84,864 KB |
| 実行使用メモリ | 51,968 KB |
| 最終ジャッジ日時 | 2026-04-06 15:48:52 |
| 合計ジャッジ時間 | 1,731 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 WA * 2 |
ソースコード
N = int(input())
s = N //36
#print(s)
t = N%36
#print(t)
count = 0
for i in range(1,9):
if count + 9-i < t:
count += 9-i
else:
a = i
b = t-count+i
break
print(str(a)+str(b)*(s+1))