結果
| 問題 |
No.383 レーティング
|
| コンテスト | |
| ユーザー |
IL_msta
|
| 提出日時 | 2017-01-10 19:42:56 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 199 bytes |
| コンパイル時間 | 368 ms |
| コンパイル使用メモリ | 55,420 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-18 00:26:52 |
| 合計ジャッジ時間 | 2,841 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 14 |
ソースコード
#include <iostream>
using namespace std;
__attribute__((constructor)) void constructor(){
int A,B;
cin >> A >> B;
B -=A;
if(B>0){
cout << '+';
}
cout << B << endl;
}
int main(){
return 0;
}
IL_msta