結果

問題 No.1656 Recuperation
ユーザー c-yan
提出日時 2021-08-27 22:49:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-21 04:01:45
合計ジャッジ時間 871 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

readline = stdin.readline

T = int(readline())

result = []
for _ in range(T):
    A, B = map(int, readline().split())
    result.append(A * (B + 1))
print(*result, sep='\n')
0