結果
| 問題 | No.383 レーティング |
| コンテスト | |
| ユーザー |
kutsutama
|
| 提出日時 | 2018-12-25 21:48:12 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 96 bytes |
| 記録 | |
| コンパイル時間 | 334 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 20,708 KB |
| 最終ジャッジ日時 | 2026-04-17 15:04:05 |
| 合計ジャッジ時間 | 3,686 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 RE * 7 |
ソースコード
a, b = [int(x) for x in input().split()]
s = b - a
if s > 0:
print('+' + s)
else:
print(s)
kutsutama