結果
| 問題 |
No.1656 Recuperation
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-27 21:25:40 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 2,000 ms |
| コード長 | 345 bytes |
| コンパイル時間 | 82 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-11-21 00:45:28 |
| 合計ジャッジ時間 | 610 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 3 |
ソースコード
#!/usr/bin/env python3
# from typing import *
def solve(a, b):
return b + a * b
# generated by oj-template v4.8.0 (https://github.com/online-judge-tools/template-generator)
def main():
a = int(input())
for i in range(a):
b, c = map(int, input().split())
print(solve(b, c))
if __name__ == '__main__':
main()