結果
| 問題 |
No.1656 Recuperation
|
| コンテスト | |
| ユーザー |
shika_126
|
| 提出日時 | 2022-07-10 15:44:02 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 79 bytes |
| コンパイル時間 | 221 ms |
| コンパイル使用メモリ | 12,032 KB |
| 実行使用メモリ | 11,392 KB |
| 最終ジャッジ日時 | 2025-01-03 08:59:44 |
| 合計ジャッジ時間 | 1,029 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 1 |
| other | RE * 3 |
ソースコード
n = int(input())
for i in range(n):
a,b = map(int,input())
print(a*b+b)
shika_126