質問編集履歴

1

コードの削除

2017/09/15 08:31

投稿

KenKenPaPPa
KenKenPaPPa

スコア24

test CHANGED
File without changes
test CHANGED
@@ -9,49 +9,3 @@
9
9
  このようなことが度々起きるので何が原因か,またどのようにすれば良いか教えていただきたいです.
10
10
 
11
11
  よろしくお願いいたします.
12
-
13
-
14
-
15
-
16
-
17
- ###該当のソースコード
18
-
19
- ```python
20
-
21
- #!/usr/bin/env python
22
-
23
- # -*- coding: utf-8 -*-
24
-
25
- NumRad = map(int, raw_input().split())
26
-
27
- Num,Rad = NumRad[0],NumRad[1]
28
-
29
-
30
-
31
- for i in xrange(Num):
32
-
33
- n = 0
34
-
35
- box = map(int, raw_input().split())
36
-
37
- for j in xrange(len(box)):
38
-
39
- if box[j] < Rad:
40
-
41
- n += 1
42
-
43
- break
44
-
45
- if n == 0:
46
-
47
- print i+1
48
-
49
-
50
-
51
-
52
-
53
- ```
54
-
55
- 参考URL
56
-
57
- https://paiza.jp/challenges