結果
問題 | No.383 レーティング |
ユーザー |
![]() |
提出日時 | 2017-09-10 10:07:22 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 142 bytes |
コンパイル時間 | 530 ms |
コンパイル使用メモリ | 52,820 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 12:32:27 |
合計ジャッジ時間 | 1,201 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 |
ソースコード
#include <iostream>int main() {int m, n;std::cin >> m >> n;std::cin.ignore();printf(m == n ? "0\n" : "%+d\n", n - m);return 0;}