forked from Fragrance/maquitous
17 lines
316 B
Python
17 lines
316 B
Python
import json
|
|
|
|
from sdgb import sdgb_api
|
|
|
|
def map(userId):
|
|
data = json.dumps({
|
|
"userId": int(userId),
|
|
"nextIndex": 0,
|
|
"maxCount": 600
|
|
})
|
|
|
|
map_result = json.loads(sdgb_api(data, "GetUserMapApi", userId))
|
|
|
|
return map_result
|
|
|
|
if __name__ == "__main__":
|
|
print(map(int(input()))) |