์ฃผํ๊ฑฐ๋ฆฌ ๋น๊ตํ๊ธฐ
import sys
input = sys.stdin.readline
a,b = map(int,input().split())
result = ""
if a>b:
result = "A"
elif a<b:
result = "B"
else:
result = "same"
print(result)
๊ทผ๋ฌด ์๊ฐ
import sys
input = sys.stdin.readline
# ์ด ๊ทผ๋ฌด ์๊ฐ ๋ถ ๋จ์๋ก ์ถ๋ ฅํ๊ธฐ
total = 0
for _ in range(5):
start, end = input().split()
start_H, start_M = map(int,start.split(":"))
end_H, end_M = map(int,end.split(":"))
total += (end_H*60 + end_M) - (start_H*60 + start_M)
print(total)
A+B
import sys
input = sys.stdin.readline
T = int(input())
for t in range(1,T+1):
a,b = map(int,input().split())
print(f"Case #{t}: {a+b}")
input()๋์ sys.stdin.readline()์ ์ฌ์ฉํ๋ ์ด์
๋งจ ์ฒซ์ค Test case๋ฅผ ์
๋ ฅ๋ฐ์ ๋๋ input()์ ์ฌ์ฉํด๋ ๋ฌด๋ฐฉ.
๊ทธ๋ฌ๋ ๋ฐ๋ณต๋ฌธ์ผ๋ก ์ฌ๋ฌ์ค ์
๋ ฅ๋ฐ๋ ์ํฉ์์๋ ๋ฐ๋์ sys.stdin.readline()์ ์ฌ์ฉํด์ผ ์๊ฐ์ด๊ณผ๊ฐ ๋ฐ์ํ์ง ์์
์ฐธ๊ณ ๋ฌธ์ ) ๋ฐฑ์ค 15552๋ฒ
https://www.acmicpc.net/problem/15552
input() ์ด sys.stdin.readline() ๋ณด๋ค ๋๋ฆฐ ์ด์
1. input() ์ ๋งค๊ฐ๋ณ์๋ก prompt message๋ฅผ ๋ฐ๋๋ค. (๋ฐ๋ผ์ ์
๋ ฅ์ ๋ฐ๊ธฐ ์ ์ prompt message๋ฅผ ์ถ๋ ฅํด์ผ ํ๋ค.)
2. ์
๋ ฅ๋ฐ์ ๊ฐ์ ๊ฐํ ๋ฌธ์๋ฅผ ์ญ์ ์ํค๊ณ ๋ฐํํ๋ค.
split() ํจ์
๋ฌธ์์ด.split("๊ตฌ๋ถ์")
start.split(":")
๊ตฌ๋ถ์์ธ : ๋ก ๋ฌธ์์ด์ ๋๋๋ค.
f-string
๋ฌธ์์ด ๊ฐ์ฅ ์์ f ๋ถ์ฌ์ฃผ๊ณ ์์
print(f"Case #{t}: {a+b}")
https://softeer.ai/practice/index.do
'Algorithm > Softeer' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Softeer - level3] ์ค๋งํธ ๋ฌผ๋ฅ (0) | 2023.07.24 |
---|---|
[Softeer - level3] ํ๋ฐฐ ๋ง์คํฐ ๊ด์ฐ (0) | 2023.07.24 |
[Softeer - level2] [21๋ ์ฌ์ง์ ๋ํ ์์ ] ๋น๋ฐ ๋ฉ๋ด (0) | 2023.07.23 |
[Softeer - level2] GBC (0) | 2023.07.23 |
[Softeer - level2] [21๋ ์ฌ์ง์ ๋ํ ์์ ] ์ ๊ดํ (0) | 2023.07.23 |