結果
問題 |
No.383 レーティング
|
ユーザー |
|
提出日時 | 2020-03-15 19:17:32 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 183 bytes |
コンパイル時間 | 2,070 ms |
コンパイル使用メモリ | 191,636 KB |
最終ジャッジ日時 | 2025-01-09 07:05:40 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 8 WA * 6 |
ソースコード
#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; }