This commit is contained in:
notalentprogrammer 2025-05-04 16:53:32 +09:00
parent 839b541914
commit 1dc72460d6
27 changed files with 0 additions and 76 deletions

BIN
Baekjoon/.DS_Store vendored

Binary file not shown.

View File

@ -1 +0,0 @@
print(sum(list(map(int,input().split()))))

View File

@ -1,4 +0,0 @@
a, b = map(int,input().split())
print(a-b)
# print(eval('+0-'.join(input())))

View File

@ -1,5 +0,0 @@
a, b = map(int,input().split())
print(a/b)
# a,_,b = input()
# print(int(a)/int(b))

View File

@ -1,4 +0,0 @@
print("\ /\ ")
print(" ) ( ')")
print("( / )")
print(" \(__)|")

View File

@ -1,5 +0,0 @@
print("|\\_/|")
print("|q p| /}")
print('( 0 )"""\\')
print('|"^"` |')
print("||_/=\\\\__|")

View File

@ -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)

View File

@ -1,2 +0,0 @@
a, b = map(int, input().split())
print(a+b,a-b,a*b,a//b,a%b)

View File

@ -1 +0,0 @@
print(input()+'??!')

View File

@ -1,2 +0,0 @@
for i in range(int(input())):
print(sum(map(int,input().split())))

View File

@ -1,2 +0,0 @@
a, b = map(int,input().split())
print(a*b)

View File

@ -1 +0,0 @@
print(sum(map(int, input().split())))

View File

@ -1,3 +0,0 @@
a, b = map(int, input().split())
# print(">" if a>b else "<" if a<b else "==")
print(["<>"[a>b],"=="][a==b])

View File

@ -1,4 +0,0 @@
x = int(input())
y = int(input())
print("3421"[x>0::2][y>0])

View File

@ -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")

View File

@ -1 +0,0 @@
print(int(input())-543)

View File

@ -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)))

View File

@ -1,4 +0,0 @@
h, m = map(int, input().split())
d = int(input())
t = h*60 + m + d
print(t//60%24, t%60)

View File

@ -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")

View File

@ -1 +0,0 @@
print("long "*(int(input())//4) + "int")

View File

@ -1 +0,0 @@
print("Hello World!")

View File

@ -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))

View File

@ -1,2 +0,0 @@
N = int(input())
for i in range(9): print(N,"*",(i+1),"=",N*(i+1))

View File

@ -1,2 +0,0 @@
y = int(input())
print(+(y%400==0 or (y%4==0 and y%100!=0)))

View File

@ -1,3 +0,0 @@
h, m = map(int,input().split())
t = 60*h + m - 45
print(t//60%24, t%60)

View File

@ -1,2 +0,0 @@
n = int(input())
print(n*(n+1)//2)

View File

@ -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])