結果
問題 | No.383 レーティング |
ユーザー |
|
提出日時 | 2023-09-08 17:07:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 90 bytes |
コンパイル時間 | 479 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 52,352 KB |
最終ジャッジ日時 | 2024-06-26 09:57:42 |
合計ジャッジ時間 | 1,476 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 |
ソースコード
a, b = map(int, input().split())c = b - aif c <= 0:print(c)else:print('+' + str(c))