提出 #51548110


ソースコード 拡げる

N = int(input())
A = list(map(int, input().split()))
B = []
for i in range(N-1):
    B.append(A[i] * A[i + 1])

print(' '.join(map(str, B)))

提出情報

提出日時
問題 A - Adjacent Product
ユーザ zenmaaa
言語 Python (PyPy 3.10-v7.3.12)
得点 100
コード長 146 Byte
結果 AC
実行時間 58 ms
メモリ 76752 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 100 / 100
結果
AC × 2
AC × 11
セット名 テストケース
Sample 00_sample_00.txt, 00_sample_01.txt
All 00_sample_00.txt, 00_sample_01.txt, 01_random_00.txt, 01_random_01.txt, 01_random_02.txt, 01_random_03.txt, 01_random_04.txt, 01_random_05.txt, 01_random_06.txt, 02_minmax_00.txt, 02_minmax_01.txt
ケース名 結果 実行時間 メモリ
00_sample_00.txt AC 58 ms 76424 KiB
00_sample_01.txt AC 58 ms 76452 KiB
01_random_00.txt AC 57 ms 76696 KiB
01_random_01.txt AC 57 ms 76284 KiB
01_random_02.txt AC 58 ms 76492 KiB
01_random_03.txt AC 58 ms 76640 KiB
01_random_04.txt AC 57 ms 76640 KiB
01_random_05.txt AC 57 ms 76584 KiB
01_random_06.txt AC 57 ms 76472 KiB
02_minmax_00.txt AC 58 ms 76516 KiB
02_minmax_01.txt AC 58 ms 76752 KiB