結果
| 問題 | No.383 レーティング |
| コンテスト | |
| ユーザー |
open
|
| 提出日時 | 2017-06-12 11:59:32 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 132 bytes |
| 記録 | |
| コンパイル時間 | 459 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 20,568 KB |
| 最終ジャッジ日時 | 2026-04-11 20:02:17 |
| 合計ジャッジ時間 | 3,828 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 RE * 7 |
ソースコード
#383 rating
a,b=(int(i) for i in input().split())
d=b-a
if a>=b:
print(d)
#この場合も文字列に?
else:
print("+"+d)
open