結果
問題 |
No.358 も~っと!門松列
|
ユーザー |
|
提出日時 | 2022-12-12 14:02:09 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 552 bytes |
コンパイル時間 | 593 ms |
コンパイル使用メモリ | 82,260 KB |
実行使用メモリ | 53,976 KB |
最終ジャッジ日時 | 2024-11-06 12:03:04 |
合計ジャッジ時間 | 2,143 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 WA * 1 |
ソースコード
import sys if sys.platform =='ios': import clipboard a=clipboard.get() a = a.split('\n') text = '\n'.join(a) with open('input_file.txt','w') as f: f.write(text) sys.stdin = open('input_file.txt') A = list(map(int,input().split())) cnt = 0 if A[0] == A[2]: exit(print(0)) N = max(A) n = min(A) if N == A[1] or n == A[1]: print("INF") exit() else: for i in range(2,1001): if A[0]%i != A[2]%i and A[1]%i > A[0]%i and A[1]%i > A[2]%i: cnt += 1 elif A[0]%i != A[2]%i and A[1]%i < A[0]%i and A[1]%i < A[2]%i: cnt += 1 print(cnt)