結果
問題 |
No.8029 素因数
|
ユーザー |
|
提出日時 | 2017-03-31 23:59:49 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 134 bytes |
コンパイル時間 | 1,355 ms |
コンパイル使用メモリ | 164,048 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 13:25:30 |
合計ジャッジ時間 | 2,334 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 WA * 9 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main() { int n; scanf("%d", &n); if (n % 2 == 0)puts("odd"); else puts("even"); }