結果
| 問題 | No.8104 黒に近い、黒 |
| コンテスト | |
| ユーザー |
3mEhsfd8aG5jx2t
|
| 提出日時 | 2023-03-31 22:11:51 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 216 bytes |
| 記録 | |
| コンパイル時間 | 1,219 ms |
| コンパイル使用メモリ | 207,816 KB |
| 実行使用メモリ | 11,844 KB |
| 最終ジャッジ日時 | 2026-06-30 03:13:54 |
| 合計ジャッジ時間 | 2,215 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 17 |
ソースコード
#include<bits/stdc++.h>
#define REP(i, n) for (int i = 0; i < (int)(n); i++)
using ll = long long;
using namespace std;
int main() {
int N;
cin >> N;
if(N == 2) {
cout << 1 << endl;
}
}
/*
3 1
9 1
*/
3mEhsfd8aG5jx2t