s_id stringlengths 10 10 | p_id stringlengths 6 6 | u_id stringlengths 10 10 | date stringlengths 10 10 | language stringclasses 1
value | original_language stringclasses 11
values | filename_ext stringclasses 1
value | status stringclasses 1
value | cpu_time int64 0 100 | memory stringlengths 4 6 | code_size int64 15 14.7k | code stringlengths 15 14.7k | problem_id stringlengths 6 6 | problem_description stringlengths 358 9.83k | input stringlengths 2 4.87k | output stringclasses 807
values | __index_level_0__ int64 1.1k 1.22M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s074650153 | p00313 | u153447291 | 1576478008 | Python | Python3 | py | Accepted | 20 | 5596 | 265 | n = int(input())
a = list(map(int,input().split()))
del a[0]
b = list(map(int,input().split()))
del b[0]
c = list(map(int,input().split()))
del c[0]
count = 0
for i in range(n):
i += 1
if i in c and ((not i in a) or i in b):
count += 1
print(count)
| p00313 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>極秘調査</H1>
<p>
秘密の組織アイヅアナリティクス(AiZu Analyt... | 5
3 1 2 3
2 4 5
2 3 4
| 1
| 17,928 |
s788694794 | p00313 | u829695570 | 1576420510 | Python | Python3 | py | Accepted | 20 | 5596 | 285 | n=int(input())
a=list(map(int,input().split()))[1:]
b=list(map(int,input().split()))[1:]
c=list(map(int,input().split()))[1:]
x = 0
y = 0
for i in range(1,n+1):
if (i not in a) and (i not in b) and (i in c):
x += 1
elif (i in b) and (i in c):
y += 1
print(x+y)
| p00313 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>極秘調査</H1>
<p>
秘密の組織アイヅアナリティクス(AiZu Analyt... | 5
3 1 2 3
2 4 5
2 3 4
| 1
| 17,929 |
s587436650 | p00313 | u221424603 | 1566803803 | Python | Python3 | py | Accepted | 20 | 5604 | 208 | N=int(input())
X=list(map(int,input().split()))
Y=list(map(int,input().split()))
Z=list(map(int,input().split()))
X.pop(0)
Y.pop(0)
Z.pop(0)
result=[i for i in Z if i not in X or i in Y]
print(len(result))
| p00313 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>極秘調査</H1>
<p>
秘密の組織アイヅアナリティクス(AiZu Analyt... | 5
3 1 2 3
2 4 5
2 3 4
| 1
| 17,930 |
s035644766 | p00313 | u726971073 | 1562656575 | Python | Python3 | py | Accepted | 20 | 5616 | 232 | n = int(input())
x, *a = map(int, input().split())
y, *b = map(int, input().split())
z, *c = map(int, input().split())
_a = set(range(1, n+1)) ^ set(a)
match1 = set(_a) & set(c)
match2 = set(b) & set(c)
print(len(match1 | match2))
| p00313 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>極秘調査</H1>
<p>
秘密の組織アイヅアナリティクス(AiZu Analyt... | 5
3 1 2 3
2 4 5
2 3 4
| 1
| 17,931 |
s938944680 | p00313 | u990228206 | 1551668430 | Python | Python3 | py | Accepted | 20 | 5600 | 335 | n=int(input())
member=[0]*(n+1)
count=0
a=list(map(int,input().split()))
for i in range(1,a[0]+1):
member[a[i]]+=1
b=list(map(int,input().split()))
for i in range(1,b[0]+1):
member[b[i]]+=2
c=list(map(int,input().split()))
for i in range(1,c[0]+1):
member[c[i]]+=4
for i in member:
if i==4 or i>5:count+=... | p00313 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>極秘調査</H1>
<p>
秘密の組織アイヅアナリティクス(AiZu Analyt... | 5
3 1 2 3
2 4 5
2 3 4
| 1
| 17,932 |
s942159414 | p00313 | u435226340 | 1550992623 | Python | Python3 | py | Accepted | 20 | 5604 | 276 | N = int(input())
A, B, C =list(map(int, input().split())), list(map(int, input().split())), list(map(int, input().split()))
D = set(A[1:] + B[1:] + C[1:])
ans = 0
for e in D:
if(e not in A[1:] and e in C[1:]) or (e in B[1:] and e in C[1:]):
ans += 1
print(ans)
| p00313 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>極秘調査</H1>
<p>
秘密の組織アイヅアナリティクス(AiZu Analyt... | 5
3 1 2 3
2 4 5
2 3 4
| 1
| 17,933 |
s226945090 | p00313 | u717526540 | 1544160773 | Python | Python3 | py | Accepted | 20 | 5624 | 294 | n = int(input())
a = list(map(int, input().split()))
X = a.pop(0)
a = set(a)
b = list(map(int, input().split()))
Y = b.pop(0)
b = set(b)
c = list(map(int, input().split()))
Z = c.pop(0)
c = set(c)
a_bar = {x for x in range(1, n+1) if x not in a}
ans = (a_bar & c) | (b & c)
print(len(ans))
| p00313 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>極秘調査</H1>
<p>
秘密の組織アイヅアナリティクス(AiZu Analyt... | 5
3 1 2 3
2 4 5
2 3 4
| 1
| 17,934 |
s882486146 | p00314 | u843508808 | 1535113072 | Python | Python3 | py | Accepted | 20 | 5596 | 247 | n = int(input())
p = list(map(int, input().split()))
def count(l, n):
ans = 0
for i in l:
if i >= n:
ans += 1
return ans
for i in reversed(range(max(p)+1)):
if count(p, i) >= i:
print(i)
break
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,935 |
s063537084 | p00314 | u043254318 | 1559223380 | Python | Python3 | py | Accepted | 20 | 5604 | 196 |
N = int(input())
p = [int(i) for i in input().split()]
p.sort()
p.reverse()
ans = 0
for i in range(len(p)):
if p[i] >= i + 1:
ans = i + 1
else:
break
print(ans)
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,936 |
s268963568 | p00314 | u260980560 | 1499595958 | Python | Python3 | py | Accepted | 20 | 7740 | 109 | input();Q=[0]*101
for p in map(int,input().split()):Q[p]+=1
print(max(i for i in range(101)if sum(Q[i:])>=i)) | p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,937 |
s546515454 | p00314 | u116766943 | 1499685434 | Python | Python3 | py | Accepted | 30 | 7748 | 303 | def check(p,A):
cnt = 0
for a in p:
if a >= A:
cnt+=1
return cnt >= A
def main():
N=int(input())
p=list(map(int,input().split()))
for A in range(100,-1,-1):
if check(p,A):
print(A)
return
if __name__ == "__main__":
main() | p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,938 |
s491844041 | p00314 | u855694108 | 1506663992 | Python | Python3 | py | Accepted | 60 | 7784 | 386 | def main():
N = int(input())
p = list(map(int, input().split()))
ans = []
sc = 1 #score count
for _ in range(N):
cnt = 0
for i in range(len(p)):
if p[i] >= sc:
cnt += 1
if cnt >= sc:
ans.append(sc)
sc += 1
ans.sort(reverse... | p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,939 |
s051333550 | p00314 | u546285759 | 1509138763 | Python | Python3 | py | Accepted | 50 | 7796 | 205 | from itertools import takewhile as T
N = int(input())
p = list(map(int, input().split()))
score = [0] * 101
for x in p:
score[x] += 1
print(len(list(T(lambda i: sum(score[i:]) >= i, range(1, 101))))) | p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,940 |
s028605385 | p00314 | u546285759 | 1509138796 | Python | Python3 | py | Accepted | 40 | 7732 | 160 | N = int(input())
p = list(map(int, input().split()))
score = [0] * 101
for x in p:
score[x] += 1
i = 1
while sum(score[i:]) >= i:
i += 1
print(i-1) | p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,941 |
s948462898 | p00314 | u546285759 | 1509139065 | Python | Python3 | py | Accepted | 30 | 7708 | 182 | N = int(input())
p = list(map(int, input().split()))
score = [0] * 101
for x in p:
score[x] += 1
i = 1
while True:
if sum(score[i:]) < i:
break
i += 1
print(i-1) | p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,942 |
s263976093 | p00314 | u546285759 | 1509139325 | Python | Python3 | py | Accepted | 50 | 7768 | 158 | N = int(input())
p = list(map(int, input().split()))
score = [0] * 101
for x in p:
score[x] += 1
print(max(i * (sum(score[i:]) >= i) for i in range(101))) | p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,943 |
s495233614 | p00314 | u724548524 | 1526740260 | Python | Python3 | py | Accepted | 20 | 5596 | 159 | n = int(input())
p = sorted(list(map(int, input().split())), reverse = True)
for i in range(n)[::-1]:
if p[i] >= i + 1:
print(i + 1)
break
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,944 |
s916465188 | p00314 | u352394527 | 1529864208 | Python | Python3 | py | Accepted | 20 | 5604 | 157 | n = int(input())
plst = sorted(list(map(int, input().split())))
for i in range(n, 0, -1):
if len([p for p in plst if p >= i]) >= i:
print(i)
break
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,945 |
s085949724 | p00314 | u548155360 | 1529992702 | Python | Python3 | py | Accepted | 20 | 5596 | 309 | # coding=utf-8
if __name__ == '__main__':
N = int(input())
score_list = list(map(int, input().split()))
score_list.sort(reverse=True)
ctr = 1
for element in score_list:
if ctr > element:
print(ctr-1)
break
ctr += 1
else:
print(ctr-1)
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,946 |
s354446310 | p00314 | u548184870 | 1595222618 | Python | Python3 | py | Accepted | 20 | 5604 | 147 | N = int(input())
A = list(map(int, input().split()))
for n in range(N, 0, -1):
tmp = len([i for i in A if i>=n])
if n<=tmp:
print(n)
break
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,947 |
s959435860 | p00314 | u240091169 | 1589101667 | Python | Python3 | py | Accepted | 20 | 5596 | 196 | n = int(input())
p = list(map(int, input().split()))
p.sort(reverse = True)
end=0
for i in range(n) :
if p[i] < i+1 :
print(i)
end=1
break
if end == 0 :
print(i+1)
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,948 |
s662240836 | p00314 | u056829778 | 1586762558 | Python | Python3 | py | Accepted | 20 | 5592 | 161 | n = int(input())
p = list(map(int, input().split()))
ans = 0
for i in range(1,n+1):
if i<=len(list(filter(lambda x: x>=i, p))):
ans = i
print(ans)
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,949 |
s002333825 | p00314 | u829695570 | 1576892055 | Python | Python3 | py | Accepted | 20 | 5596 | 148 | n = int(input())
p = sorted(list(map(int,input().split())), reverse=True)
max = 0
for i in range(n):
if(p[i] > i):
max = i+1
print(max)
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,950 |
s680600024 | p00314 | u221424603 | 1566845287 | Python | Python3 | py | Accepted | 20 | 5596 | 149 | N=int(input())
P=list(map(int,input().split()))
P.sort(reverse=True)
result=0
for i in range(N):
if P[i]>=i+1:
result=i+1
print(result)
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,951 |
s626332693 | p00314 | u726971073 | 1563267004 | Python | Python3 | py | Accepted | 20 | 5600 | 202 | n = int(input())
bunpu = [0]*101
for i in list(map(int, input().split())): bunpu[i]+=1
sm = 0
for i in range(100, -1, -1):
sm += bunpu[i]
if i<=sm:
print(i)
break
else: print(0)
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,952 |
s266068995 | p00314 | u435226340 | 1552205765 | Python | Python3 | py | Accepted | 20 | 5604 | 158 | N = int(input())
p = list(map(int, input().split()))
for i in range(100, 0, -1):
if i <= len([x for x in p if i <= x]):
print(i)
break
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,953 |
s209888961 | p00314 | u990228206 | 1551672759 | Python | Python3 | py | Accepted | 20 | 5596 | 184 | n=int(input())
point=list(map(int,input().split()))
for i in range(n+1)[::-1]:
count=0
for j in point:
if j>=i:count+=1
if count>=i:
print(i)
break
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,954 |
s857051147 | p00314 | u717526540 | 1544161713 | Python | Python3 | py | Accepted | 20 | 5604 | 157 | n = int(input())
p = list(map(int, input().split()))
for i in range(100, 0, -1):
if len([x for x in p if x >= i]) >= i:
print(i)
break
| p00314 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>プログラミングコンテスト</H1>
<p>
今年も白虎大学でプログラミングコンテ... | 7
5 4 3 10 2 4 1
| 4
| 17,955 |
s129731096 | p00320 | u078042885 | 1484843549 | Python | Python3 | py | Accepted | 20 | 7708 | 241 | c=[[0,0]]*6
for i in range(6):
a,b=sorted(map(int,input().split()))
c[i]=[a,b]
c.sort()
for i in range(0,6,2):
if c[i]!=c[i+1]:print('no');break
else:print(['no','yes'][c[0][0]==c[2][0] and c[0][1]==c[4][0] and c[2][1]==c[4][1]]) | p00320 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>直方体</H1>
<p>
アイヅ放送協会の教育番組(AHK教育)では、子供向けの... | 2 2
2 3
2 3
2 3
2 2
3 2
| yes
| 17,956 |
s366507884 | p00320 | u260980560 | 1501349161 | Python | Python3 | py | Accepted | 20 | 7752 | 357 | A = sorted(sorted(map(int, input().split())) for i in range(6))
if all(a==b for a, b in zip(A[::2], A[1::2])):
p, q, r = A[::2]
if (p[0] in q and p[1] in r and q[q.index(p[0])^1] == r[r.index(p[1])^1]) or (p[0] in r and p[1] in q and r[r.index(p[0])^1] == q[q.index(p[1])^1]):
print("yes")
else:
... | p00320 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>直方体</H1>
<p>
アイヅ放送協会の教育番組(AHK教育)では、子供向けの... | 2 2
2 3
2 3
2 3
2 2
3 2
| yes
| 17,957 |
s554308301 | p00320 | u724548524 | 1527225042 | Python | Python3 | py | Accepted | 20 | 5604 | 273 | a = []
for _ in range(6):a.append(sorted(list(map(int, input().split()))))
a.sort(key = lambda x:x[1])
a.sort(key = lambda x:x[0])
print("yes" if a[0] == a[1] and a[2] == a[3] and a[4] == a[5] and a[0][0] == a[2][0] and a[0][1] == a[4][0] and a[2][1] == a[4][1] else "no")
| p00320 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>直方体</H1>
<p>
アイヅ放送協会の教育番組(AHK教育)では、子供向けの... | 2 2
2 3
2 3
2 3
2 2
3 2
| yes
| 17,958 |
s370788863 | p00320 | u352394527 | 1529906491 | Python | Python3 | py | Accepted | 20 | 5612 | 652 | lst = [set(map(int, input().split())) for _ in range(6)]
rec = []
while lst:
x = lst[0]
count = lst.count(x)
if count % 2 == 1:
print("no")
break
rec.append((count, x))
for _ in range(count):
lst.pop(lst.index(x))
else:
if len(rec) == 1:
if len(rec[0][1]) == 1:
print("yes")
else:
... | p00320 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>直方体</H1>
<p>
アイヅ放送協会の教育番組(AHK教育)では、子供向けの... | 2 2
2 3
2 3
2 3
2 2
3 2
| yes
| 17,959 |
s298779664 | p00321 | u043254318 | 1559226885 | Python | Python3 | py | Accepted | 20 | 5988 | 686 |
N,F = [int(i) for i in input().split()]
itemsets = []
for l in range(N):
items = input().split()
M = int(items.pop(0))
items.sort()
for i in range(len(items)):
for j in range(i+1, len(items)):
itemsets.append(items[i] + " " + items[j])
itemsets.sort()
cnt = 1
ans = []
... | p00321 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>関連商品</H1>
<p>
インターネット通販サイトでは、ユーザが現在見ている商... | 5 2
3 bread milk banana
2 milk cornflakes
3 potato bread milk
4 cornflakes bread milk butter
2 potato bread
| 3
bread milk
bread potato
cornflakes milk
| 17,960 |
s377470427 | p00321 | u260980560 | 1501349672 | Python | Python3 | py | Accepted | 30 | 8188 | 374 | n, f = map(int, input().split())
pair = {}
for i in range(n):
m, *items = input().split()
m = int(m)
for p in range(m):
for q in range(p):
key = tuple(sorted([items[p], items[q]]))
pair[key] = pair.get(key, 0) + 1
ans = sorted(key for key in pair if pair[key] >= f)
print(len(... | p00321 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>関連商品</H1>
<p>
インターネット通販サイトでは、ユーザが現在見ている商... | 5 2
3 bread milk banana
2 milk cornflakes
3 potato bread milk
4 cornflakes bread milk butter
2 potato bread
| 3
bread milk
bread potato
cornflakes milk
| 17,961 |
s297865729 | p00321 | u133119785 | 1508654851 | Python | Python3 | py | Accepted | 70 | 8428 | 426 | import sys
l = input().split()
f = int(l[1])
t = {}
for l in sys.stdin:
e = l.split()
m = int(e.pop(0))
s = sorted(e)
for i in range(m):
for j in range(i+1,m):
k = (s[i],s[j])
if k in t:
t[k] += 1
else:
t[k] = 1
f = list(so... | p00321 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>関連商品</H1>
<p>
インターネット通販サイトでは、ユーザが現在見ている商... | 5 2
3 bread milk banana
2 milk cornflakes
3 potato bread milk
4 cornflakes bread milk butter
2 potato bread
| 3
bread milk
bread potato
cornflakes milk
| 17,962 |
s304775564 | p00321 | u724548524 | 1527226301 | Python | Python3 | py | Accepted | 40 | 6392 | 427 | n, f = map(int, input().split())
a = {}
for _ in range(n):
m, *c = input().split()
m = int(m)
for i in range(m - 1):
for j in range(i + 1, m):
p = (min(c[i], c[j]), max(c[i], c[j]))
if p in a:a[p] += 1
else:a[p] = 1
b = []
for k in a:
if a[k] >= f:b.append((k,... | p00321 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>関連商品</H1>
<p>
インターネット通販サイトでは、ユーザが現在見ている商... | 5 2
3 bread milk banana
2 milk cornflakes
3 potato bread milk
4 cornflakes bread milk butter
2 potato bread
| 3
bread milk
bread potato
cornflakes milk
| 17,963 |
s964423021 | p00321 | u352394527 | 1529907390 | Python | Python3 | py | Accepted | 50 | 7056 | 395 | from collections import Counter
counter = Counter()
n, f = map(int, input().split())
for _ in range(n):
items = input().split()
m = int(items[0])
items = items[1:]
items.sort()
for i in range(m):
for j in range(i + 1, m):
counter[(items[i], items[j])] += 1
lst = [(k, v) for k, v in counter.most_com... | p00321 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>関連商品</H1>
<p>
インターネット通販サイトでは、ユーザが現在見ている商... | 5 2
3 bread milk banana
2 milk cornflakes
3 potato bread milk
4 cornflakes bread milk butter
2 potato bread
| 3
bread milk
bread potato
cornflakes milk
| 17,964 |
s417625006 | p00321 | u512192552 | 1597750207 | Python | Python3 | py | Accepted | 50 | 6724 | 632 | N, F = map(int, input().split())
data = []
tmp = {}
for i in range(N) :
data.append(list(input().split()))
for x in range(1, len(data[i]) - 1) :
for y in range(x+1, len(data[i])) :
a = data[i][x]
b = data[i][y]
a, b = min(a, b), max(a, b)
if (a, b) not in ... | p00321 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>関連商品</H1>
<p>
インターネット通販サイトでは、ユーザが現在見ている商... | 5 2
3 bread milk banana
2 milk cornflakes
3 potato bread milk
4 cornflakes bread milk butter
2 potato bread
| 3
bread milk
bread potato
cornflakes milk
| 17,965 |
s756914854 | p00321 | u240091169 | 1594771155 | Python | Python3 | py | Accepted | 60 | 6724 | 645 | N, F = map(int, input().split())
data = []
tmp = {}
for i in range(N) :
data.append(list(input().split()))
for x in range(1, len(data[i]) - 1) :
for y in range(x+1, len(data[i])) :
a = data[i][x]
b = data[i][y]
a, b = min(a, b), max(a, b)
if (a, b) not in ... | p00321 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>関連商品</H1>
<p>
インターネット通販サイトでは、ユーザが現在見ている商... | 5 2
3 bread milk banana
2 milk cornflakes
3 potato bread milk
4 cornflakes bread milk butter
2 potato bread
| 3
bread milk
bread potato
cornflakes milk
| 17,966 |
s257461448 | p00321 | u350155409 | 1573223119 | Python | Python3 | py | Accepted | 30 | 6656 | 470 |
def combinations(l):
sl = sorted(l)
r = range(len(sl)-1)
for i in r:
for j in range(i+1, len(sl)):
yield (sl[i], sl[j])
m,n = [ int(s) for s in input().split() ]
d = {}
for i in range(m):
l = input().split()[1:]
for e in combinations(l):
if e in d:
d[e] +=... | p00321 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>関連商品</H1>
<p>
インターネット通販サイトでは、ユーザが現在見ている商... | 5 2
3 bread milk banana
2 milk cornflakes
3 potato bread milk
4 cornflakes bread milk butter
2 potato bread
| 3
bread milk
bread potato
cornflakes milk
| 17,967 |
s080180307 | p00330 | u144532944 | 1534941338 | Python | Python3 | py | Accepted | 30 | 5572 | 23 | print(int(input())<<5)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,968 |
s528309858 | p00330 | u805464373 | 1555734757 | Python | Python3 | py | Accepted | 20 | 5576 | 31 | W = int(input())
print(32*W)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,969 |
s114026130 | p00330 | u800534567 | 1556413359 | Python | Python3 | py | Accepted | 20 | 5576 | 23 | print(int(input())*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,970 |
s160755844 | p00330 | u888548672 | 1556504885 | Python | Python3 | py | Accepted | 20 | 5572 | 23 | print(int(input())*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,971 |
s275607329 | p00330 | u814278309 | 1559087690 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | W=int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,972 |
s597876261 | p00330 | u116766943 | 1499260987 | Python | Python3 | py | Accepted | 20 | 7660 | 22 | print(int(input())*32) | p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,973 |
s936921987 | p00330 | u350064373 | 1501505051 | Python | Python3 | py | Accepted | 20 | 7640 | 26 | print( int( input()) * 32) | p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,974 |
s914604654 | p00330 | u498511622 | 1501505226 | Python | Python3 | py | Accepted | 20 | 7632 | 26 | W=int(input())
print(W*32) | p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,975 |
s601844236 | p00330 | u214404619 | 1503144329 | Python | Python3 | py | Accepted | 20 | 7644 | 30 | w = int(input())
print(32 * w) | p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,976 |
s065713238 | p00330 | u231562319 | 1504017059 | Python | Python3 | py | Accepted | 20 | 7648 | 22 | print(int(input())*32) | p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,977 |
s115230298 | p00330 | u855694108 | 1506064723 | Python | Python3 | py | Accepted | 20 | 7760 | 79 | def main():
print(int(input()) * 32)
if __name__ == "__main__":
main() | p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,978 |
s519151734 | p00330 | u546285759 | 1507983413 | Python | Python3 | py | Accepted | 20 | 7680 | 24 | print(int(input()) * 32) | p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,979 |
s521927495 | p00330 | u529013669 | 1508407422 | Python | Python3 | py | Accepted | 20 | 7672 | 22 | print(int(input())*32) | p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,980 |
s023638530 | p00330 | u737311644 | 1520638652 | Python | Python3 | py | Accepted | 20 | 5576 | 23 | print(int(input())*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,981 |
s381502728 | p00330 | u724548524 | 1526737900 | Python | Python3 | py | Accepted | 20 | 5576 | 25 | print(int(input()) * 32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,982 |
s902736206 | p00330 | u777277984 | 1527645322 | Python | Python3 | py | Accepted | 20 | 5576 | 32 | W = int(input())
print(W * 32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,983 |
s448774109 | p00330 | u327546577 | 1528203361 | Python | Python3 | py | Accepted | 20 | 5576 | 23 | print(int(input())*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,984 |
s790238018 | p00330 | u352394527 | 1529912143 | Python | Python3 | py | Accepted | 20 | 5576 | 25 | print(int(input()) * 32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,985 |
s985382959 | p00330 | u365131854 | 1597749401 | Python | Python3 | py | Accepted | 20 | 5576 | 23 | print(int(input())*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,986 |
s814867920 | p00330 | u342624490 | 1596961850 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | a=int(input())
print(a*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,987 |
s010300100 | p00330 | u779523319 | 1596698550 | Python | Python3 | py | Accepted | 30 | 5572 | 27 | W=int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,988 |
s658070501 | p00330 | u461381803 | 1596681664 | Python | Python3 | py | Accepted | 20 | 5576 | 41 | W = int(input())
bit = W * 32
print(bit)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,989 |
s099869629 | p00330 | u852547520 | 1596525507 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | w=int(input())
print(w*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,990 |
s257667134 | p00330 | u250040203 | 1596437036 | Python | Python3 | py | Accepted | 20 | 5576 | 29 | x = input()
print(int(x)*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,991 |
s316612535 | p00330 | u476754031 | 1596389984 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | a=int(input())
print(a*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,992 |
s581534475 | p00330 | u205858220 | 1596260699 | Python | Python3 | py | Accepted | 20 | 5576 | 25 | print((int)(input())*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,993 |
s879427991 | p00330 | u885258138 | 1596171961 | Python | Python3 | py | Accepted | 20 | 5576 | 28 | x=int(input())
print(32*x)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,994 |
s490611891 | p00330 | u854654878 | 1595656679 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | n=int(input())
print(n*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,995 |
s157183329 | p00330 | u295728895 | 1595495526 | Python | Python3 | py | Accepted | 20 | 5572 | 29 | N = int(input())
print(N*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,996 |
s884871208 | p00330 | u920513163 | 1595219219 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | a=int(input())
print(a*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,997 |
s125355323 | p00330 | u548184870 | 1594379914 | Python | Python3 | py | Accepted | 20 | 5576 | 23 | print(32*int(input()))
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,998 |
s562549532 | p00330 | u512192552 | 1594304986 | Python | Python3 | py | Accepted | 20 | 5580 | 66 | # coding: utf-8
# Your code here!
W=int(input())
n=W*32
print(n)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 17,999 |
s217912819 | p00330 | u878828646 | 1594105473 | Python | Python3 | py | Accepted | 20 | 5572 | 29 | x = int(input())
print(x*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,000 |
s335507349 | p00330 | u659772967 | 1593995939 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | x=int(input());print(32*x)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,001 |
s080694353 | p00330 | u141099640 | 1593995769 | Python | Python3 | py | Accepted | 20 | 5576 | 31 | W = int(input())
print(W * 32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,002 |
s661130306 | p00330 | u286298310 | 1593527485 | Python | Python3 | py | Accepted | 30 | 5576 | 31 | W = int(input())
print(32*W)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,003 |
s458945904 | p00330 | u782152619 | 1592829448 | Python | Python3 | py | Accepted | 20 | 5576 | 29 | W = int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,004 |
s327413044 | p00330 | u930644970 | 1592550005 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | w=int(input())
print(32*w)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,005 |
s360017136 | p00330 | u179629761 | 1592272028 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | x=int(input())
print(x*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,006 |
s139107719 | p00330 | u662362547 | 1592267177 | Python | Python3 | py | Accepted | 20 | 5572 | 27 | W=int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,007 |
s187507856 | p00330 | u596129030 | 1591595890 | Python | Python3 | py | Accepted | 20 | 5576 | 28 | w=int(input())
print(w*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,008 |
s471628092 | p00330 | u940828136 | 1591440009 | Python | Python3 | py | Accepted | 20 | 5576 | 29 | W = int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,009 |
s246203691 | p00330 | u293306835 | 1591023946 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | W=int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,010 |
s619424989 | p00330 | u189528630 | 1590383926 | Python | Python3 | py | Accepted | 20 | 5572 | 28 | W=int(input())
print(32*W)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,011 |
s313779355 | p00330 | u925445050 | 1590338837 | Python | Python3 | py | Accepted | 20 | 5572 | 28 | W=int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,012 |
s741364694 | p00330 | u573698742 | 1590063495 | Python | Python3 | py | Accepted | 20 | 5572 | 27 | w=int(input())
print(w*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,013 |
s219127918 | p00330 | u905454643 | 1590052064 | Python | Python3 | py | Accepted | 20 | 5572 | 31 | W=int(input())
b=32*W
print(b)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,014 |
s342584988 | p00330 | u100874602 | 1589981046 | Python | Python3 | py | Accepted | 20 | 5572 | 27 | w=int(input())
print(w*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,015 |
s884800875 | p00330 | u329155726 | 1589849368 | Python | Python3 | py | Accepted | 20 | 5576 | 29 | a = int(input())
print(a*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,016 |
s803216371 | p00330 | u326077502 | 1589849291 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | W=int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,017 |
s239335507 | p00330 | u799076010 | 1589848870 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | W=int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,018 |
s710820402 | p00330 | u333382219 | 1589840997 | Python | Python3 | py | Accepted | 30 | 5576 | 31 | W = int(input())
print(W * 32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,019 |
s440690123 | p00330 | u257570657 | 1589820424 | Python | Python3 | py | Accepted | 20 | 5580 | 67 | #!/usr/bin/python3
# coding: utf-8
W = int(input())
print(W * 32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,020 |
s136195788 | p00330 | u430159711 | 1589785559 | Python | Python3 | py | Accepted | 20 | 5576 | 28 | x=int(input())
print(x*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,021 |
s507622478 | p00330 | u497248335 | 1589782501 | Python | Python3 | py | Accepted | 20 | 5576 | 30 | W = int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,022 |
s428711333 | p00330 | u319403848 | 1589780740 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | W=int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,023 |
s320276065 | p00330 | u826807985 | 1589779928 | Python | Python3 | py | Accepted | 20 | 5576 | 27 | w=int(input())
print(w*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,024 |
s544868366 | p00330 | u762022668 | 1589779271 | Python | Python3 | py | Accepted | 20 | 5576 | 28 | a=int(input())
print(a*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,025 |
s748804244 | p00330 | u632910712 | 1589779175 | Python | Python3 | py | Accepted | 20 | 5576 | 29 | W = int(input())
print(W*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,026 |
s035685543 | p00330 | u950320804 | 1589778601 | Python | Python3 | py | Accepted | 20 | 5580 | 62 | # coding: utf-8
# Your code here!
x=int(input())
print(x*32)
| p00330 |
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: { inlineMath: [["$","$"], ["\\(","\\)"]], processEscapes: true }});
</script>
<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<H1>ワード</H1>
<p>
コンピュータで扱われるデータの最小単位をビット(bit... | 4
| 128
| 18,027 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.