結果

問題 No.2357 Guess the Function
ユーザー 陽ダンカン陽ダンカン
提出日時 2024-08-11 17:38:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,211 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 83,160 KB
平均クエリ数 2.64
最終ジャッジ日時 2024-08-11 17:38:29
合計ジャッジ時間 1,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
82,528 KB
testcase_01 WA -
testcase_02 AC 73 ms
82,264 KB
testcase_03 AC 72 ms
83,032 KB
testcase_04 AC 77 ms
82,520 KB
testcase_05 WA -
testcase_06 AC 70 ms
82,520 KB
testcase_07 AC 71 ms
82,264 KB
testcase_08 WA -
testcase_09 AC 71 ms
82,264 KB
testcase_10 AC 88 ms
82,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# cook your dish here
from collections import defaultdict,deque
from bisect import bisect_left,bisect_right
from itertools import accumulate,permutations,groupby
import sys
from math import gcd,isqrt
import heapq
import math
import string
#from sortedcontainers import SortedSet, SortedList, SortedDict
#import pulp
import random
#from more_itertools import*
#from functools import cache
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
#sys.setrecursionlimit(10**6)
#input=lambda :sys.stdin.readline()[:-1]
class ready():
    def getint(self):
        return int(input())
    def getflo(self):
        return float(input())
    def getmanyint(self):
        return map(int,input().split())
    def gettree(self,n):
        g=[[] for _ in range(n)]
        for _ in range(n-1):
            u,v,c=map(int,input().split())
            g[u-1].append([v-1,c])
            g[v-1].append([u-1,c])
        return g
R=ready()

#ここからコ―ド
print("?",100,flush=True)
mod=int(input())
if mod==99:
    print("!",99,100,flush=True)
else:
    print("?",99-mod,flush=True)
    b=int(input())+1
    for a in range(1,b):
        if (a+100)%b==mod:
            print("!",a,b,flush=True)
            exit()
0