結果

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

ソースコード

diff #

A, B = input().split() 

stress = A*B
count = B
while stress!=0:
    count += 1
    stress -= 1
print(count)
0