結果
問題 | No.358 も~っと!門松列 |
ユーザー | notetonous |
提出日時 | 2016-04-17 22:57:48 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 654 bytes |
コンパイル時間 | 301 ms |
コンパイル使用メモリ | 20,864 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-04 10:46:04 |
合計ジャッジ時間 | 974 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 0 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 0 ms
5,248 KB |
testcase_08 | AC | 0 ms
5,248 KB |
testcase_09 | AC | 0 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 0 ms
5,248 KB |
testcase_12 | AC | 0 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 0 ms
5,248 KB |
testcase_21 | WA | - |
testcase_22 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:11:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%d",&a[i]); | ^~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(){ int a[3]; int b[3]; int p; int count=0; int i,j; int z; int min=1000,max=1; for(i=0;i<3;i++){ scanf("%d",&a[i]); if(max<a[i])max=a[i]; if(min>a[i])min=a[i]; } z=max; if(a[1]==1){printf("INF");return 0;} if(a[0]==a[2] && a[1]==a[2] && a[0]==a[2]){printf("0\n");return 0;} for(p=1;p<=z;p++){ b[0]=a[0]%p; b[1]=a[1]%p; b[2]=a[2]%p; max=b[0]; min=b[0]; for(i=0;i<3;i++){ if(max<b[i])max=b[i]; if(min>b[i])min=b[i]; } if((max==b[1] || min==b[1]) && (b[0]!=b[2]) && (b[0]!=b[1]) && (b[1]!=b[2]))count++; } printf("%d\n",count); return 0; }