#32273: python input


python123 (test.py)

學校 : 國立鳳山高級商工職業學校
編號 : 190656
來源 : [140.125.84.99]
最後登入時間 :
2025-07-29 02:30:25

n = int(input())
a = []
while len(a) < n:
num = [int(i) for i in input().strip().split()]
for i in num:
a.append(i)
#34691: Re: python input


s11104220@school.saihs.edu.tw (施同學)

學校 : 臺北市立松山高級工農職業學校
編號 : 221254
來源 : [223.137.72.55]
最後登入時間 :
2024-12-11 13:02:15

n = int(input())
a = []
while len(a) < n:
num = [int(i) for i in input().strip().split()]
for i in num:
a.append(i)

 

n=int(input())
s=[]
while len(s)!=n:
    s.extend(list(map(int,input().split())))