結果

問題 No.353 ヘイトプラス
ユーザー AREIDO2AREIDO2
提出日時 2016-08-25 19:48:10
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 70 ms / 1,000 ms
コード長 112 bytes
コンパイル時間 1,685 ms
コンパイル使用メモリ 77,456 KB
実行使用メモリ 76,620 KB
最終ジャッジ日時 2023-09-16 23:45:19
合計ジャッジ時間 3,037 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
76,364 KB
testcase_01 AC 69 ms
76,152 KB
testcase_02 AC 69 ms
76,412 KB
testcase_03 AC 70 ms
76,112 KB
testcase_04 AC 69 ms
76,084 KB
testcase_05 AC 70 ms
76,268 KB
testcase_06 AC 67 ms
76,620 KB
testcase_07 AC 69 ms
76,512 KB
testcase_08 AC 69 ms
76,244 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