結果
| 問題 | No.383 レーティング |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-10-10 20:32:49 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 174 ms / 2,000 ms |
| コード長 | 230 bytes |
| コンパイル時間 | 176 ms |
| コンパイル使用メモリ | 77,336 KB |
| 最終ジャッジ日時 | 2025-12-03 21:58:11 |
|
ジャッジサーバーID (参考情報) |
judge5 / 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)