結果

問題 No.353 ヘイトプラス
ユーザー AREIDO2AREIDO2
提出日時 2016-08-25 19:48:10
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 112 bytes
コンパイル時間 1,739 ms
コンパイル使用メモリ 76,844 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-07-03 22:18:12
合計ジャッジ時間 3,067 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,516 KB
testcase_01 AC 74 ms
75,412 KB
testcase_02 AC 76 ms
75,776 KB
testcase_03 AC 75 ms
75,552 KB
testcase_04 AC 75 ms
75,904 KB
testcase_05 AC 77 ms
75,392 KB
testcase_06 AC 74 ms
75,264 KB
testcase_07 AC 77 ms
75,264 KB
testcase_08 AC 74 ms
75,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
#coding:UTF-8

a,b = map(int,raw_input().split())

c = b * -1
answer = a - c

print answer
0