結果
問題 | No.2357 Guess the Function |
ユーザー | Nikkuniku029 |
提出日時 | 2023-06-23 23:18:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 561 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 27,504 KB |
平均クエリ数 | 5.45 |
最終ジャッジ日時 | 2024-07-01 03:04:21 |
合計ジャッジ時間 | 1,605 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | AC | 51 ms
26,968 KB |
testcase_05 | AC | 52 ms
27,352 KB |
testcase_06 | AC | 50 ms
26,840 KB |
testcase_07 | AC | 51 ms
26,968 KB |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | AC | 54 ms
27,504 KB |
ソースコード
def make_divisors(n): lower_divisors, upper_divisors = [], [] i = 1 while i*i <= n: if n % i == 0: lower_divisors.append(i) if i != n // i: upper_divisors.append(n//i) i += 1 return lower_divisors + upper_divisors[::-1] print('? 1', flush=True) i = int(input()) if i == 0: print('! 0 1', flush=True) A = i-1 print('? 100', flush=True) j = int(input()) P = make_divisors(100+A-j) for B in P: if j < B and (1+A) % B == i and (100+A) % B == j: print('! {} {}'.format(A, B))