結果
問題 |
No.8029 素因数
|
ユーザー |
|
提出日時 | 2017-03-31 23:05:50 |
言語 | C90 (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 130 bytes |
コンパイル時間 | 769 ms |
コンパイル使用メモリ | 19,328 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 05:17:28 |
合計ジャッジ時間 | 1,260 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 WA * 24 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%lld",&m); | ^~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(void){ long long m; scanf("%lld",&m); if(m%8){printf("even\n");} else{printf("odd");} return 0; }