DEV Community

Yuta Goto
Yuta Goto

Posted on

Standard input for AtCoder Contest (Python3)

Alt Text

https://atcoder.jp

String

# ex: hello
s = input()
print(s) # => "hello"
Enter fullscreen mode Exit fullscreen mode

Number

# ex: 10
n = int(input())
print(n + 1) # => 11
Enter fullscreen mode Exit fullscreen mode

Multiple String

# ex: hello world
s1, s2 = input().split()
print(s1) # => "hello"
print(s2) # => "world"
Enter fullscreen mode Exit fullscreen mode

Multiple Number

# ex: 2 3
a, b = map(int, input().split())
print(a * b) # => 6
Enter fullscreen mode Exit fullscreen mode
# ex: 1 2 3 4 5 6 7 8 9 10
l = [ int(x) for x in input().split() ]
print(sum(l)) # => 55
Enter fullscreen mode Exit fullscreen mode

Top comments (0)