0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

整数の組からの選択 Python3編

Posted at

いくつか問題を飛ばして今回はこれ
https://paiza.jp/works/mondai/stdin_primer/stdin_primer__pair_data_step3

1 行目に整数 N が与えられます。
2 行目以降に、N 組の整数 a_i と b_i が N 行で与えられます。(1 ≦ i ≦ N)
8 組目の a_i と b_i を出力してください。

わたしはというと、とりあえず文字列のまま配列に入れて7番目のを出力という方法。
でも可読性は悪いなと感じている。
これはN組というのは次元を暗示しているので普通なら配列に入れてやらないといけないと思う。

N = int(input())
arr = []
for i in range(1,N+1):
  arr.append(input())
  
print(arr[7])

なので再度考える

N = int(input())
a = []
b = []
for i in range(N):
    a_value, b_value = map(int, input().split())
    a.append(a_value)
    b.append(b_value)

print(a[7], b[7])

あれ? あれれれれ?
8組目。。。。
あっそっか、
0から数えても1から数えても、結局配列には0から入れていくわけで、
結局7になるんだ、なるほど。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?