結果
| 問題 |
No.383 レーティング
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-20 15:12:51 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 14 ms / 2,000 ms |
| コード長 | 135 bytes |
| コンパイル時間 | 1,937 ms |
| コンパイル使用メモリ | 191,784 KB |
| 最終ジャッジ日時 | 2025-01-11 08:40:58 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 14 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b; cin>>a>>b;
int dif=b-a;
if(dif>0)cout<<'+';
cout<<dif<<"\n"s;
}