Reset
This commit is contained in:
parent
839b541914
commit
1dc72460d6
BIN
Baekjoon/.DS_Store
vendored
BIN
Baekjoon/.DS_Store
vendored
Binary file not shown.
@ -1 +0,0 @@
|
||||
print(sum(list(map(int,input().split()))))
|
||||
@ -1,4 +0,0 @@
|
||||
a, b = map(int,input().split())
|
||||
print(a-b)
|
||||
|
||||
# print(eval('+0-'.join(input())))
|
||||
@ -1,5 +0,0 @@
|
||||
a, b = map(int,input().split())
|
||||
print(a/b)
|
||||
|
||||
# a,_,b = input()
|
||||
# print(int(a)/int(b))
|
||||
@ -1,4 +0,0 @@
|
||||
print("\ /\ ")
|
||||
print(" ) ( ')")
|
||||
print("( / )")
|
||||
print(" \(__)|")
|
||||
@ -1,5 +0,0 @@
|
||||
print("|\\_/|")
|
||||
print("|q p| /}")
|
||||
print('( 0 )"""\\')
|
||||
print('|"^"` |')
|
||||
print("||_/=\\\\__|")
|
||||
@ -1,2 +0,0 @@
|
||||
a,b,c = map(int, input().split())
|
||||
print((a+b)%c,((a%c)+(b%c))%c,(a*b)%c,((a%c)*(b%c))%c)
|
||||
@ -1,2 +0,0 @@
|
||||
a, b = map(int, input().split())
|
||||
print(a+b,a-b,a*b,a//b,a%b)
|
||||
@ -1 +0,0 @@
|
||||
print(input()+'??!')
|
||||
@ -1,2 +0,0 @@
|
||||
for i in range(int(input())):
|
||||
print(sum(map(int,input().split())))
|
||||
@ -1,2 +0,0 @@
|
||||
a, b = map(int,input().split())
|
||||
print(a*b)
|
||||
@ -1 +0,0 @@
|
||||
print(sum(map(int, input().split())))
|
||||
@ -1,3 +0,0 @@
|
||||
a, b = map(int, input().split())
|
||||
# print(">" if a>b else "<" if a<b else "==")
|
||||
print(["<>"[a>b],"=="][a==b])
|
||||
@ -1,4 +0,0 @@
|
||||
x = int(input())
|
||||
y = int(input())
|
||||
|
||||
print("3421"[x>0::2][y>0])
|
||||
@ -1,3 +0,0 @@
|
||||
import sys
|
||||
for i in range(int(sys.stdin.readline())):
|
||||
sys.stdout.write(str(sum(map(int, sys.stdin.readline().split())))+"\n")
|
||||
@ -1 +0,0 @@
|
||||
print(int(input())-543)
|
||||
@ -1,2 +0,0 @@
|
||||
a, b, c = map(int, input().split())
|
||||
print(a*1000+10000 if a==b==c else (a*100+1000 if a==b or a==c else (b*100+1000 if b==c else max(a,b,c)*100)))
|
||||
@ -1,4 +0,0 @@
|
||||
h, m = map(int, input().split())
|
||||
d = int(input())
|
||||
t = h*60 + m + d
|
||||
print(t//60%24, t%60)
|
||||
@ -1,7 +0,0 @@
|
||||
X = int(input())
|
||||
Y = 0
|
||||
for i in range(int(input())):
|
||||
A, B = map(int,input().split())
|
||||
Y += A*B
|
||||
if X==Y : print("Yes")
|
||||
else : print("No")
|
||||
@ -1 +0,0 @@
|
||||
print("long "*(int(input())//4) + "int")
|
||||
@ -1 +0,0 @@
|
||||
print("Hello World!")
|
||||
@ -1,9 +0,0 @@
|
||||
# a, b = int(input()), list(map(int, " ".join(input()).split()))
|
||||
# c = 0
|
||||
# for i in range(len(b)):
|
||||
# c += a*b[len(b)-i-1]*10**i
|
||||
# print(a*b[len(b)-i-1])
|
||||
# print(c)
|
||||
|
||||
a, b = int(input()), input()
|
||||
print(*[a * int(i) for i in b][::-1], a * int(b))
|
||||
@ -1,2 +0,0 @@
|
||||
N = int(input())
|
||||
for i in range(9): print(N,"*",(i+1),"=",N*(i+1))
|
||||
@ -1,2 +0,0 @@
|
||||
y = int(input())
|
||||
print(+(y%400==0 or (y%4==0 and y%100!=0)))
|
||||
@ -1,3 +0,0 @@
|
||||
h, m = map(int,input().split())
|
||||
t = 60*h + m - 45
|
||||
print(t//60%24, t%60)
|
||||
@ -1,2 +0,0 @@
|
||||
n = int(input())
|
||||
print(n*(n+1)//2)
|
||||
@ -1,3 +0,0 @@
|
||||
# a = int(input())
|
||||
# print("A" if a > 89 else "B" if a > 79 else "C" if a >69 else "D" if a>59 else "F")
|
||||
print("FFFFFFDCBAA"[int(input())//10])
|
||||
Loading…
x
Reference in New Issue
Block a user