Skip to content

Commit b104018

Browse files
committed
fix(io): インタラクティブ問題で爆死するので修正
1 parent 7a3fbc0 commit b104018

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/standard_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def s() -> str:
77
"""
88
一行に一つのstringをinput
99
"""
10-
return sys.stdin.readline().rstrip()
10+
return input()
1111

1212

1313
def sl() -> List[str]:

0 commit comments

Comments
 (0)