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
s452732448
p00340
u869208015
1590990082
Python
Python3
py
Accepted
20
5596
196
e_1,e_2,e_3,e_4=map(int,input().split()) if e_1==e_2 and e_3==e_4: print("yes") elif e_1==e_3 and e_2==e_4: print("yes") elif e_1==e_4 and e_2==e_3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,328
s787473395
p00340
u240091169
1590989679
Python
Python3
py
Accepted
20
5596
160
e1, e2, e3, e4 = map(int, input().split()) if e1 == e2 and e3 == e4 or e1 == e3 and e2 == e4 or e1 == e4 and e2 == e3 : print("yes") else : print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,329
s713372077
p00340
u056263240
1590989196
Python
Python3
py
Accepted
20
5596
116
a = list(map(int,input().split())) a.sort() if a[0]==a[1] and a[2]==a[3] : print("yes") else : print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,330
s603219494
p00340
u925445050
1590988506
Python
Python3
py
Accepted
20
5596
125
a,b,c,d=map(int,input().split()) if a==b and c==d or a==c and b==d or a==d and b==c: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,331
s582339526
p00340
u034153923
1590987759
Python
Python3
py
Accepted
20
5596
116
a = list(map(int,input().split())) a.sort() if a[0]==a[1] and a[2]==a[3] : print("yes") else : print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,332
s982132482
p00340
u573698742
1590975435
Python
Python3
py
Accepted
20
5596
181
a,b,c,d=map(int, input().split()) if a == b and c == d : print("yes") elif a == c and b == d : print("yes") elif a == d and b == c : print("yes") else : print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,333
s075783130
p00340
u555228137
1590893973
Python
Python3
py
Accepted
20
5596
218
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4: print('yes') elif e1==e3 and e2==e4: print('yes') elif e1==e4 and e2==e3: print('yes') elif e1==e2==e3==e4: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,334
s038701893
p00340
u548283997
1590731427
Python
Python3
py
Accepted
20
5596
180
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4: print('yes') elif e2==e3 and e1==e4: print('yes') elif e3==e1 and e2==e4: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,335
s035809492
p00340
u924938296
1590658287
Python
Python3
py
Accepted
20
5596
183
e1,e2,e3,e4 = map(int,input().split()) if e1==e2 and e3==e4: print("yes") elif e1==e3 and e2==e4: print("yes") elif e1==e4 and e2==e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,336
s407452845
p00340
u251716708
1590501757
Python
Python3
py
Accepted
20
5600
140
# coding: utf-8 # Your code here! x = sorted(map(int,input().split())) if x[0]==x[1] and x[2]==x[3]: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,337
s273371031
p00340
u457539618
1590457451
Python
Python3
py
Accepted
20
5596
187
e1 , e2 , e3 , e4 =map(int,input().split()) if e1==e2 and e3==e4: print("yes") elif e2==e3 and e1==e4: print("yes") elif e1==e3 and e2==e4: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,338
s808509401
p00340
u709176169
1590457098
Python
Python3
py
Accepted
20
5596
220
e1,e2,e3,e4 = map(int,input().split()) if e1==e2 and e3==e4: print('yes') elif e1==e3 and e2==e4: print('yes') elif e1==e4 and e2==e3: print('yes') elif e1==e2==e3==e4: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,339
s761177234
p00340
u361745995
1590456653
Python
Python3
py
Accepted
20
5596
192
e1,e2,e3,e4=map(int,input().split()) if e1 == e2 and e3 == e4: print("yes") elif e1 == e3 and e2 == e4: print("yes") elif e1 == e4 and e2 == e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,340
s883204921
p00340
u529477970
1590456169
Python
Python3
py
Accepted
20
5604
244
e1,e2,e3,e4=(int(x) for x in input().split()) if 1<=e1<=100 and 1<=e2<=100 and 1<=e3<=100 and 1<=e4<=100: if e1==e2 and e3==e4 or e1==e3 and e2==e4 or e1==e4 and e2==e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,341
s967326457
p00340
u275486335
1590455747
Python
Python3
py
Accepted
20
5596
165
a,b,c,d=map(int,input().split()) if a==b and c==d: print("yes") elif a==c and b==d: print("yes") elif a==d and b==c: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,342
s155692933
p00340
u905454643
1590454839
Python
Python3
py
Accepted
20
5552
97
e1,e2,e3,e4=sorted(input().split()) if e1==e2 and e3==e4: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,343
s127209945
p00340
u976648183
1590454837
Python
Python3
py
Accepted
20
5600
207
# coding: utf-8 # Your code here! a,b,c,d=map(int,input().split()); if a==b and c==d: print("yes") elif a==c and b==d: print("yes") elif b==c and a==d: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,344
s107882784
p00340
u438043982
1590454507
Python
Python3
py
Accepted
20
5552
97
e1,e2,e3,e4=sorted(input().split()) if e1==e2 and e3==e4: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,345
s398093452
p00340
u630948380
1590454499
Python
Python3
py
Accepted
20
5596
181
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4: print("yes") elif e1==e3 and e2==e4: print("yes") elif e1==e4 and e2==e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,346
s321307348
p00340
u350481745
1590454424
Python
Python3
py
Accepted
20
5596
180
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4: print("yes") elif e1==e3 and e2==e4: print("yes") elif e1==e4 and e2==e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,347
s138491261
p00340
u221550784
1590454322
Python
Python3
py
Accepted
20
5596
218
e1,e2,e3,e4=map(int,input().split()) if e1==e3 and e2==e4: print('yes') elif e1==e2 and e3==e4: print('yes') elif e4==e1 and e2==e3: print('yes') elif e1==e2==e3==e4: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,348
s528826761
p00340
u680047335
1590451728
Python
Python3
py
Accepted
20
5564
225
s = input().split() for j in range(len(s)): for k in range(j-1,-1,-1): if s[k] >= s[k+1]: s[k],s[k+1] = s[k+1],s[k] if s[1] == s[0]: if s[2] == s[3]: print("yes") else: print("no") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,349
s709075355
p00340
u661628543
1590420239
Python
Python3
py
Accepted
20
5596
227
e1,e2,e3,e4=map(int,input().split())# Your code here=map(int,input().split()) if e1==e2 and e3==e4: print('yes') elif e1==e3 and e2==e4: print('yes') elif e1==e4 and e2==e3: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,350
s004034571
p00340
u644959375
1590394594
Python
Python3
py
Accepted
20
5596
376
e1,e2,e3,e4=map(int,input().split()) if e1==e2 or e1==e3 or e1==e4: f1=True else: f1=False if e2==e1 or e2==e3 or e2==e4: f2=True else: f2=False if e3==e1 or e3==e2 or e3==e4: f3=True else: f3=False if e4==e1 or e4==e2 or e4==e3: f4=True else: f4=False if f1==True and f2==True and f3==Tr...
p00340
<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教育)では、子ど...
1 1 3 4
no
18,351
s614043639
p00340
u940983140
1590392122
Python
Python3
py
Accepted
20
5596
130
a,b,c,d=map(int,input().split()) if (a==b and c==d) or (a==c and b==d) or (a==d and b==c): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,352
s591872958
p00340
u755480664
1590391439
Python
Python3
py
Accepted
20
5596
141
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4 or e1==e3 and e2==e4 or e1==e4 and e2==e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,353
s467133765
p00340
u037263780
1590388408
Python
Python3
py
Accepted
20
5596
164
a,b,c,d=map(int,input().split()) if a==b and c==d: print("yes") elif a==c and b==d: print("yes") elif a==d and b==c: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,354
s747531836
p00340
u528181593
1590387235
Python
Python3
py
Accepted
20
5596
128
a,b,c,d=map(int,input().split()) if (a==b and c==d)or(a==c and b==d)or(a==d and b==c): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,355
s709682254
p00340
u586171604
1590385962
Python
Python3
py
Accepted
20
5588
96
a, b, c, d = sorted(map(int, input().split())) print("yes" if a == b and c == d else "no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,356
s419435575
p00340
u206985725
1590383394
Python
Python3
py
Accepted
20
5596
184
a,b,c,d=list(map(int,input().split())) if a==b and c==d: print("yes") elif a==c and b==d: print("yes") elif a==d and b==c: print("yes") else : print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,357
s800080064
p00340
u919773430
1590382776
Python
Python3
py
Accepted
20
5596
202
a , b , c , d = list(map(int,input().split())) if a == b and c == d : print( "yes" ) elif a == c and b == d : print( "yes" ) elif a == d and b == c : print( "yes" ) else : print( "no" )
p00340
<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教育)では、子ど...
1 1 3 4
no
18,358
s385331414
p00340
u053015104
1590382065
Python
Python3
py
Accepted
20
5596
297
e1,e2,e3,e4 = map(int,input().split()) if e1==e2: if e3==e4: print("yes") else: print("no") elif e1==e3: if e2==e4: print("yes") else: print("no") elif e1==e4: if e2==e3: print("yes") else: print("no") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,359
s149338655
p00340
u189528630
1590374298
Python
Python3
py
Accepted
20
5596
123
lst = sorted(list(map(int, input().split()))) if lst[0] == lst[1] and lst[2] == lst[3]: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,360
s221995329
p00340
u645087541
1590367389
Python
Python3
py
Accepted
20
5596
194
e1,e2,e3,e4 = map(int,input().split()) if e1 == e3 and e2 == e4: print('yes') elif e1 == e2 and e3 == e4: print('yes') elif e1 == e4 and e2 == e3: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,361
s876370936
p00340
u711365732
1590334240
Python
Python3
py
Accepted
20
5596
254
a,b,c,d = map(int, input().split()) if a==b: if c==d: print('yes') else: print('no') elif a==c: if b==d: print('yes') else: print('no') else: if b==c: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,362
s125982881
p00340
u673183698
1590332415
Python
Python3
py
Accepted
20
5596
128
a,b,c,d=map(int,input().split()) if (a==b and c==d) or (a==c and b==d) or (a==d and b==c) : print('yes') else : print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,363
s651633156
p00340
u829520323
1590226612
Python
Python3
py
Accepted
20
5596
142
e1,e2,e3,e4 = map(int,input().split()) if e1==e2 and e3==e4 or e1==e3 and e2==e4 or e1==e4 and e2==e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,364
s036333600
p00340
u514242733
1590205453
Python
Python3
py
Accepted
20
5596
191
a,b,c,d=input().split() a=int(a) b=int(b) c=int(c) d=int(d) if a==b and c==d: print("yes") elif a==c and b==d: print("yes") elif a==d and b==c: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,365
s810365066
p00340
u333382219
1590205322
Python
Python3
py
Accepted
20
5596
164
a, b, c, d = map(int, input().split()) if (a == b and c == d) or (a == c and b == d) or (a == d and b == c) or a == b == c == d: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,366
s140880155
p00340
u257570657
1590076493
Python
Python3
py
Accepted
20
5600
152
# coding: utf-8 a,b,c,d = map(int,input().split()) if (((a==b and c==d) or (a==c and b==d))or (a==d and b==c)): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,367
s476521149
p00340
u100874602
1590066312
Python
Python3
py
Accepted
20
5596
141
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4 or e1==e3 and e2==e4 or e1==e4 and e2==e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,368
s610817217
p00340
u497248335
1589950604
Python
Python3
py
Accepted
20
5596
116
a = list(map(int,input().split())) a.sort() if a[0]==a[1] and a[2]==a[3] : print("yes") else : print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,369
s159318304
p00340
u355413291
1589849550
Python
Python3
py
Accepted
20
5552
98
e1,e2,e3,e4=sorted(input().split()) if e1==e2 and e3==e4: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,370
s416696459
p00340
u179629761
1589820548
Python
Python3
py
Accepted
20
5592
114
a=list(map(int,input().split())) a=sorted(a) if a[0]==a[1] and a[2]==a[3]: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,371
s372978284
p00340
u574841425
1589797202
Python
Python3
py
Accepted
20
5596
218
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4: print("yes") elif e2==e3 and e1==e4: print("yes") elif e1==e3 and e2==e4: print("yes") elif e1==e2==e3==e4: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,372
s843500084
p00340
u627612495
1589790579
Python
Python3
py
Accepted
20
5596
194
e1,e2,e3,e4 = map(int,input().split()) if e1 == e2 and e3 == e4: print('yes') elif e1 == e3 and e2 == e4: print('yes') elif e1 == e4 and e2 == e3: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,373
s673828599
p00340
u444626963
1589787391
Python
Python3
py
Accepted
20
5596
169
a,b,c,d=map(int,input().split()) if a==b and c==d : print('yes') elif a==c and b==d : print('yes') elif a==d and b==c: print('yes') else : print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,374
s265284438
p00340
u064625546
1589786989
Python
Python3
py
Accepted
20
5596
269
e1,e2,e3,e4=map(int,input().split()) i=0 while i<3: if e1>e2: e1,e2=e2,e1 if e2>e3: e2,e3=e3,e2 if e3>e4: e3,e4=e4,e3 i+=1 if e1==e2: if e3==e4: print("yes") else: print("no") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,375
s027146267
p00340
u838993229
1589782934
Python
Python3
py
Accepted
20
5592
154
e1,e2,e3,e4 = map(int,input().split()) if e1 == e2 and e3 == e4 or e1 == e3 and e2 == e4 or e1 == e4 and e2 == e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,376
s768679232
p00340
u596129030
1589782422
Python
Python3
py
Accepted
20
5596
278
a,b,c,d=map(int,input().split()) if a==b: if c==d: print("yes") else: print("no") elif a==c: if b==d: print("yes") else: print("no") elif a==d: if b==c: print("yes") else: print("no") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,377
s507265297
p00340
u994684803
1589779767
Python
Python3
py
Accepted
20
5596
194
e1,e2,e3,e4= map(int,input().split()) if e1 == e2 and e3 == e4: print("yes") elif e1 == e3 and e2 == e4: print("yes") elif e1 == e4 and e2 == e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,378
s159745403
p00340
u931484744
1589776754
Python
Python3
py
Accepted
20
5600
209
# coding: utf-8 # Your code here! e1, e2, e3, e4 = map(int, input().split()) if ((e1 == e2) and (e3 == e4)) or ((e1 == e3) and (e2 == e4)) or ((e1 == e4) and (e2 == e3)): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,379
s253285870
p00340
u320921262
1589773579
Python
Python3
py
Accepted
20
5596
140
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4 or e1==e3 and e2==e4 or e1==e4 and e2==e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,380
s083961129
p00340
u868891301
1589723354
Python
Python3
py
Accepted
20
5596
183
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4 : print("yes") elif e1==e3 and e2==e4 : print("yes") elif e1==e4 and e2==e3 : print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,381
s227240445
p00340
u062640303
1589706728
Python
Python3
py
Accepted
20
5596
281
e1,e2,e3,e4=map(int,input().split()) if(e1==e2)&((e2==e3==e4)or(e3==e4)): print("yes") elif(e2==e3)&((e3==e1==e4)or(e1==e4)): print("yes") elif(e3==e4)&((e4==e1==e2)or(e1==e2)): print("yes") elif(e4==e1)&((e1==e2==e3)or(e2==e3)): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,382
s835189258
p00340
u874049078
1589704275
Python
Python3
py
Accepted
20
5596
187
e1, e2, e3, e4 =map(int, input().split()) if e1==e2 and e3==e4: print('yes') elif e1==e3 and e2==e4: print('yes') elif e1==e4 and e2==e3: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,383
s151450738
p00340
u506949161
1589702415
Python
Python3
py
Accepted
20
5596
143
a,b,c,d=map(int,input().split()) if (a==b and c==d)or(b==c and a==d): print("yes") elif a==b==c==d: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,384
s130352314
p00340
u228556128
1589663039
Python
Python3
py
Accepted
20
5596
148
e1,e2,e3,e4=map(int,input().split()) if (e1==e2 and e3==e4) or (e1==e3 and e2==e4) or (e1==e4 and e2==e3): print ("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,385
s208138374
p00340
u442912414
1589600267
Python
Python3
py
Accepted
20
5596
354
a,b,c,d =map(int,input().split()) if a==b: if c==d: print('yes') else: print('no') elif b==c: if d==a: print('yes') else: print('no') elif c==d: if a==b: print('yes') else: print('no') elif d==a: if b==c: print('yes') else: ...
p00340
<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教育)では、子ど...
1 1 3 4
no
18,386
s189064515
p00340
u419548414
1589527774
Python
Python3
py
Accepted
20
5596
166
a,b,c,d=map(int,input().split()) if a==b and c==d : print("yes") elif a==c and b==d: print("yes") elif a==d and b==c: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,387
s734819624
p00340
u427834127
1589525955
Python
Python3
py
Accepted
20
5596
164
a,b,c,d=map(int,input().split()) if a==b and c==d: print("yes") elif a==c and b==d: print("yes") elif a==d and b==c: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,388
s706675687
p00340
u834258010
1589525406
Python
Python3
py
Accepted
20
5596
181
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4: print('yes') elif e1==e3 and e2==e4: print('yes') elif e1==e4 and e3==e2: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,389
s460468514
p00340
u512192552
1589467772
Python
Python3
py
Accepted
20
5600
215
# coding: utf-8 # Your code here! e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4: print('yes') elif e1==e3 and e2==e4: print('yes') elif e1==e4 and e2==e3: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,390
s428273685
p00340
u695568874
1589466429
Python
Python3
py
Accepted
20
5596
294
e1,e2,e3,e4=map(int,input().split()) if e1==e2: if e3==e4: print("yes") else: print("no") elif e1==e3: if e2==e4: print("yes") else: print("no") elif e1==e4: if e3==e2: print("yes") else: print("no") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,391
s452139544
p00340
u918533241
1589417911
Python
Python3
py
Accepted
20
5596
180
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4: print("yes") elif e1==e3 and e2==e4: print("yes") elif e1==e4 and e2==e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,392
s186632780
p00340
u322947441
1589373826
Python
Python3
py
Accepted
20
5596
172
e1,e2,e3,e4= map(int,input().split()) if ((e1==e2 and e3==e4) or (e1==e3 and e2==e4) or (e1==e4 and e3==e2) or (e3==e2 and e1==e4)): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,393
s004818245
p00340
u747536722
1589369890
Python
Python3
py
Accepted
20
5604
213
e1,e2,e3,e4=(int(x) for x in input().split()) if 1<=e1<=100 and 1<=e2<=100 and 1<=e3<=100 and 1<=e4<=100: if e1==e2 and e3==e4 or e1==e4 and e2==e3: print("yes") else: print("no") else: pass
p00340
<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教育)では、子ど...
1 1 3 4
no
18,394
s100932871
p00340
u705625724
1589350884
Python
Python3
py
Accepted
20
5600
132
# coding: utf-8 E = list(map(int,input().split())) E.sort() if E[0]==E[1] and E[2]==E[3]: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,395
s271642359
p00340
u371026526
1589298232
Python
Python3
py
Accepted
20
5596
148
e1,e2,e3,e4 = map(int,input().split()) if (e1==e2 and e3==e4) or (e2==e3 and e1==e4) or (e1==e3 and e2==e4): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,396
s442651018
p00340
u253463111
1589282482
Python
Python3
py
Accepted
20
5596
125
a,b,c,d=map(int,input().split()) if a==b and c==d or a==c and b==d or a==d and b==c: print("yes") else : print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,397
s008551059
p00340
u290304811
1589276043
Python
Python3
py
Accepted
20
5592
167
a,b,c,d = map(int,input().split()) if a==b and c==d: print("yes") elif a==c and b==d: print("yes") elif a==d and b==c: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,398
s386941959
p00340
u677563181
1589273421
Python
Python3
py
Accepted
20
5596
151
e1 ,e2, e3, e4=map(int, input().split()) if (e1==e2 and e3==e4) or (e1==e4 and e2==e3) or (e2==e4 and e3==e1): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,399
s460894250
p00340
u259416836
1589268110
Python
Python3
py
Accepted
20
5596
180
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4: print("yes") elif e1==e3 and e2==e4: print("yes") elif e1==e4 and e3==e2: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,400
s650943914
p00340
u981910313
1589256606
Python
Python3
py
Accepted
20
5596
246
e_1,e_2,e_3,e_4=map(int,input().split()) if e_1!=e_2!=e_3!=e_4: print('no') elif e_1==e_2==e_3==e_4: print('yes') elif (e_1==e_2 and e_3==e_4) or (e_1==e_3 and e_2==e_4) or (e_1==e_4 and e_2==e_3): print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,401
s904440206
p00340
u904289400
1589251532
Python
Python3
py
Accepted
20
5596
219
e1,e2,e3,e4=map(int,input().split()) if e1==e2==e3==e4: print('yes') elif e1==e2 and e3==e4: print('yes') elif e1==e3 and e2==e4: print('yes') elif e1==e4 and e2==e3: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,402
s147375322
p00340
u397004753
1589245725
Python
Python3
py
Accepted
20
5596
142
e1,e2,e3,e4=map(int,input().split()) if (e1==e2 and e3==e4) or (e1==e3 and e2==e4) or (e1==e4 and e2==e3): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,403
s440600413
p00340
u162292165
1589197948
Python
Python3
py
Accepted
20
5596
198
a,b,c,d=map(int,input().split()) if a==b and c==d: print('yes') elif a==c and b==d: print('yes') elif a==d and b==c: print('yes') elif a==b==c==d: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,404
s984325120
p00340
u747915832
1589183161
Python
Python3
py
Accepted
20
5604
162
e1, e2, e3, e4, = (int(x) for x in input().split()) if (e1==e2 and e3==e4) or (e1==e3 and e2==e4) or (e1==e4 and e2==e3): print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,405
s692985160
p00340
u511292942
1589176817
Python
Python3
py
Accepted
20
5596
129
num = list(map(int,input().split())) num.sort() if num[0] == num[1] and num[2] ==num[3]: print("yes") else : print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,406
s848207424
p00340
u455994792
1589176570
Python
Python3
py
Accepted
20
5596
181
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4: print("yes") elif e1==e3 and e2==e4: print("yes") elif e1==e4 and e2==e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,407
s551524882
p00340
u577978368
1589175423
Python
Python3
py
Accepted
20
5596
171
a,b,c,d=map(int,input().split()) if (a==b and c==d): print("yes") elif (a==c and b==d): print("yes") elif (a==d and b==c): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,408
s640996505
p00340
u138194441
1589173208
Python
Python3
py
Accepted
20
5596
166
a,b,c,d = map(int,input().split()) if a==b and c==d: print("yes") elif a==c and b==d: print("yes") elif a==d and b==c: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,409
s994089071
p00340
u037566157
1589173034
Python
Python3
py
Accepted
20
5604
125
a,b,c,d=(int(x) for x in input().split()) a,b,c,d=sorted([a,b,c,d]) if a==b and c==d: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,410
s268472716
p00340
u795882061
1589172832
Python
Python3
py
Accepted
20
5596
313
e1, e2, e3, e4 = map(int,input().split()) if e1 == e2: if e3 == e4: print('yes') else: print('no') elif e1 == e3: if e2 == e4: print('yes') else: print('no') elif e1 == e4: if e2 == e3: print('yes') else: print('no') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,411
s661300791
p00340
u695386605
1589075022
Python
Python3
py
Accepted
20
5596
214
e_1, e_2, e_3, e_4 = map(int, input().split()) if e_1 == e_2 and e_3 == e_4: print("yes") elif e_1 == e_3 and e_2 == e_4: print("yes") elif e_1 ==e_4 and e_2 == e_3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,412
s022449320
p00340
u862272701
1589028203
Python
Python3
py
Accepted
20
5596
203
e1, e2, e3, e4 = map(int, input().split()) if e1 == e2 and e3 == e4: print("yes") elif e1 == e3 and e2 == e4: print("yes") elif e1 == e4 and e2 == e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,413
s708477594
p00340
u140569607
1589022602
Python
Python3
py
Accepted
20
5596
195
e1,e2,e3,e4 = map(int, input().split()) if e1 == e2 and e3 == e4: print("yes") elif e1 == e3 and e2 == e4: print("yes") elif e1 == e4 and e2 == e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,414
s331989256
p00340
u593595530
1589019296
Python
Python3
py
Accepted
20
5596
120
list=sorted(map(int,input().split())) if list[0] ==list[1] and list[2]==list[3]: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,415
s596248501
p00340
u685887060
1589012300
Python
Python3
py
Accepted
20
5596
355
e1 , e2 , e3 , e4 = map(int , input() . split()) if (e1 == e2) & ((e2 == e3 == e4) or (e3 == e4)) : print('yes') elif (e2 == e3) & ((e3 == e1 == e4) or (e1 == e4)) : print('yes') elif (e3 == e4) & ((e4 == e1 == e2) or (e1 == e2)) : print('yes') elif (e4 == e1) & ((e1 == e2 == e3) or (e2 == e3)) : pr...
p00340
<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教育)では、子ど...
1 1 3 4
no
18,416
s781527388
p00340
u753534330
1588998305
Python
Python3
py
Accepted
20
5600
239
e1, e2, e3, e4 = map(int, input().split()) if e2 < e1: e1,e2 = e2,e1 if e4 < e3: e3,e4 = e4,e3 if e3 < e1: e1,e3 = e3,e1 if e4 < e2: e2,e4 = e4,e2 if e3 < e2: e2,e3 = e3,e2 if e1 == e2 and e3 == e4: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,417
s121885341
p00340
u991830357
1588980112
Python
Python3
py
Accepted
20
5596
210
a,b,c,d=map(int,input().split()) if a==b and b==c and c==d: print('yes') elif a==b and c==d: print('yes') elif a==c and b==d: print('yes') elif a==d and b==c: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,418
s023155633
p00340
u171326376
1588951507
Python
Python3
py
Accepted
20
5596
256
e_1,e_2,e_3,e_4 = map(int,input().split()) if e_1 == e_2 and e_3 == e_4: print('yes') elif e_1 == e_3 and e_2 == e_4: print('yes') elif e_1 == e_4 and e_2 ==e_3: print('yes') elif e_1 == e_2 == e_3 ==e_4: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,419
s921214241
p00340
u395654950
1588942444
Python
Python3
py
Accepted
20
5596
209
# coding: utf-8 # Your code here! e1, e2, e3, e4 = map(int, input().split()) if ((e1 == e2) and (e3 == e4)) or ((e1 == e3) and (e2 == e4)) or ((e1 == e4) and (e2 == e3)): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,420
s377221175
p00340
u192469946
1588931660
Python
Python3
py
Accepted
20
5596
141
a , b , c , d =map(int,input().split()) if (a==b and c==d) or (a==c and b==d) or (a==d and b==c): print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,421
s262603866
p00340
u583329397
1588930773
Python
Python3
py
Accepted
20
5596
140
e1,e2,e3,e4=map(int,input().split()) if e1==e2 and e3==e4 or e1==e3 and e2==e4 or e1==e4 and e2==e3: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,422
s282854969
p00340
u842461513
1588903402
Python
Python3
py
Accepted
20
5596
223
#小さい順に並べて入力 i_list = sorted(list(map(int,input().split()))) #2辺が同じであればyesそれいがいはnoを出力 if i_list[0] == i_list[1] and i_list[2] == i_list[3]:print("yes") else:print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,423
s510430722
p00340
u988962397
1588902936
Python
Python3
py
Accepted
20
5596
280
a,b,c,d=map(int, input().split()) if a==b: if c==d: print("yes") else: print("no") elif a==c: if b==d: print("yes") else: print("no") elif a==d: if b==c: print("yes") else: print("no") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,424
s265161270
p00340
u350963229
1588838169
Python
Python3
py
Accepted
20
5596
169
a,b,c,d = map(int, input().split()) if a==b and c==d: print("yes") elif a==c and b==d: print("yes") elif a==d and b==c: print("yes") else: print("no")
p00340
<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教育)では、子ど...
1 1 3 4
no
18,425
s982722148
p00340
u511744190
1588824240
Python
Python3
py
Accepted
20
5596
165
a,b,c,d=map(int,input().split()) if a==b and c==d: print('yes') elif a==c and b==d: print('yes') elif a==d and b==c: print('yes') else: print('no')
p00340
<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教育)では、子ど...
1 1 3 4
no
18,426
s286722373
p00340
u895962529
1588743808
Python
Python3
py
Accepted
20
5596
437
e1,e2,e3,e4=list(map(int,input().split())) if e1==e2: if e3==e4: print("yes") else: print("no") elif e1==e3: if e2==e4: print("yes") else: print("no") elif e1==e4: if e2==e3: print("yes") else: print("no") elif e2==e3: if e1==e4: print("yes") else: print("no") elif e2==e4: if e1==e3:...
p00340
<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教育)では、子ど...
1 1 3 4
no
18,427