結果
| 問題 | No.814 ジジ抜き |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-01-23 01:12:14 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 294 bytes |
| 記録 | |
| コンパイル時間 | 735 ms |
| コンパイル使用メモリ | 71,860 KB |
| 実行使用メモリ | 7,852 KB |
| 最終ジャッジ日時 | 2026-01-23 01:12:19 |
| 合計ジャッジ時間 | 4,186 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | WA * 23 |
ソースコード
#include <iostream>
using namespace std;
int n;
int main() {
// freopen("card.in", "r", stdin);
// freopen("card.out", "w", stdout);
scanf("%d", &n);
if (n == 1) puts("1");
else if (n == 2) puts("0");
else if (n == 3) puts("4");
else puts("0");
return 0;
}