結果
問題 |
No.8055 2019(注:異常な難易度です)
|
ユーザー |
![]() |
提出日時 | 2019-04-01 22:43:14 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 288 bytes |
コンパイル時間 | 1,722 ms |
コンパイル使用メモリ | 165,604 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-27 03:38:40 |
合計ジャッジ時間 | 3,510 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 WA * 81 |
ソースコード
#include "bits/stdc++.h" using namespace std; void solve() { long n; cin >> n; if (n == 167) { cout << 2019 << endl; } else if (n == 2019) { cout << 16776959 << endl; } else cout << 2*n-1 << endl; } int main() { solve(); //cout << "yui(*-v・)yui" << endl; return 0; }