結果
問題 |
No.383 レーティング
|
ユーザー |
|
提出日時 | 2020-03-15 19:18:20 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 183 bytes |
コンパイル時間 | 1,942 ms |
コンパイル使用メモリ | 190,316 KB |
最終ジャッジ日時 | 2025-01-09 07:05:49 |
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; int main(){ int a,b; cin>>a>>b; if(a==b) puts("0"); else printf("%+d\n",b-a); return 0; }