結果
問題 |
No.8029 素因数
|
ユーザー |
![]() |
提出日時 | 2017-03-31 23:17:46 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 279 bytes |
コンパイル時間 | 2,702 ms |
コンパイル使用メモリ | 158,848 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 05:25:48 |
合計ジャッジ時間 | 8,004 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 2 WA * 1 RE * 37 |
ソースコード
#include<bits/stdc++.h> using namespace std; void even() { cout << "even" << endl; exit(0); } void odd() { cout << "odd" << endl; exit(0); } int main() { int M; cin >> M; if(M == 1) even(); if(M == 2) odd(); if(M == 3) even(); if(M >= 4) throw (0); }