結果
問題 | No.1656 Recuperation |
ユーザー | Lisp_Coder |
提出日時 | 2022-04-08 20:55:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 461 ms / 2,000 ms |
コード長 | 220 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 43,808 KB |
最終ジャッジ日時 | 2024-11-28 11:43:06 |
合計ジャッジ時間 | 2,946 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 461 ms
43,808 KB |
testcase_01 | AC | 439 ms
43,556 KB |
testcase_02 | AC | 457 ms
43,420 KB |
testcase_03 | AC | 449 ms
43,428 KB |
ソースコード
import sys input=sys.stdin.readline import numpy as np T = int(input()) AB = [map(int, input().split()) for _ in range(T)] A, B = [list(i) for i in zip(*AB)] stress_list = [] for i in range(T): print((A[i]+1)*B[i])