結果
| 問題 |
No.383 レーティング
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-10-10 20:32:49 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 24 ms / 2,000 ms |
| コード長 | 230 bytes |
| コンパイル時間 | 121 ms |
| コンパイル使用メモリ | 7,040 KB |
| 実行使用メモリ | 8,192 KB |
| 最終ジャッジ日時 | 2024-11-22 01:03:26 |
| 合計ジャッジ時間 | 1,368 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 |
ソースコード
# -*- coding: utf-8 -*- import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll a, b = map(int, raw_input().split()) if a == b: print 0 if a > b: print "-%d" % (a - b) if a < b: print "+%d" % (b - a)