You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/usr/bin/env python3importsysdefsolve(H: int, W: int, s: "List[str]"):
return# Generated by 1.1.7.1 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)defmain():
defiterate_tokens():
forlineinsys.stdin:
forwordinline.split():
yieldwordtokens=iterate_tokens()
H=int(next(tokens)) # type: intW=int(next(tokens)) # type: ints= [next(tokens) for_inrange(W)] # type: "List[str]"solve(H, W, s)
if__name__=='__main__':
main()
AGC043Aにおいて、
というコードを実行したところ、次のようなテンプレートが出力されております。
https://atcoder.jp/contests/agc043/tasks/agc043_aにあるように、入力ケースはsは(H, W)サイズの2重リストであることが期待されるべきですが、生成されているケースは(W, W)になっているように見受けられます。
おそらく、
は
であるべきだと思います。
例えば、以下のコードにおいて、range(W)はWA、range(H)はACとなっています。
The text was updated successfully, but these errors were encountered: