結果
| 問題 | No.2246 1333-like Number |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-03-17 21:37:34 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 207 bytes |
| 記録 | |
| コンパイル時間 | 2,054 ms |
| コンパイル使用メモリ | 95,848 KB |
| 実行使用メモリ | 79,232 KB |
| 最終ジャッジ日時 | 2026-08-30 04:14:47 |
| 合計ジャッジ時間 | 5,055 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_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))