結果
問題 | No.192 合成数 |
ユーザー | umashika |
提出日時 | 2016-02-01 20:43:07 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 331 bytes |
コンパイル時間 | 112 ms |
コンパイル使用メモリ | 20,480 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 01:54:17 |
合計ジャッジ時間 | 1,138 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 25 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d",&n); | ^~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(void) { int n; scanf("%d",&n); int i; //101 102 103 if(n==101 || n==102 || n==103){printf("4\n");} //104 //4以上の全ての偶数は合成数である else{ for(i=n-100;i<=n+100;i++){ if(i%2==0){ printf("%d\n",i); break; } } } return 0; }