結果
| 問題 | No.383 レーティング |
| コンテスト | |
| ユーザー |
AQUA16573837
|
| 提出日時 | 2018-03-12 01:50:35 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 453µs | |
| コード長 | 232 bytes |
| 記録 | |
| コンパイル時間 | 142 ms |
| コンパイル使用メモリ | 47,956 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-09-18 18:05:06 |
| 合計ジャッジ時間 | 2,181 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 |
ソースコード
#include <stdio.h>
#include <algorithm>
using namespace std;
using ll = long long;
int main() {
int a, b, difference;
scanf("%d %d", &a, &b);
difference = b - a;
if (0 < difference)
printf("+");
printf("%d\n", difference);
}
AQUA16573837