結果
問題 | No.358 も~っと!門松列 |
ユーザー | btk |
提出日時 | 2016-04-17 22:38:07 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 469 bytes |
コンパイル時間 | 1,148 ms |
コンパイル使用メモリ | 158,288 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-04 10:36:09 |
合計ジャッジ時間 | 2,066 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
#include <bits/stdc++.h> using namespace std; bool isKadomatsu(int a,int b,int c){ if(a == c)return false; if(a>b && b<c)return true; if(a<b && b>c)return true; return false; } int main() { int A,B,C; cin >> A >> B >> C; if(isKadomatsu(A,B,C)){ cout << "INF" <<endl; return 0; } int cnt = 0; for(int i = 1; i <= 1000; i++) if(isKadomatsu(A % i,B % i,C % i))cnt++; cout << cnt << endl; return 0; }