結果
| 問題 |
No.8035 2018
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-04-02 00:13:53 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 257 bytes |
| コンパイル時間 | 1,630 ms |
| コンパイル使用メモリ | 164,752 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-26 06:19:45 |
| 合計ジャッジ時間 | 3,052 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | AC * 1 WA * 1 RE * 5 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int n;
cin >> n;
assert(n <= 2);
if (n == 1) cout << 6 << endl;
else cout << 10 << endl;
return 0;
}