結果

問題 No.3093 Please GCD
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-04-01 22:35:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 93,388 KB
平均クエリ数 8099.53
最終ジャッジ日時 2024-11-20 10:30:45
合計ジャッジ時間 14,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
68,836 KB
testcase_01 AC 63 ms
70,408 KB
testcase_02 AC 101 ms
78,404 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 400 ms
93,000 KB
testcase_08 WA -
testcase_09 AC 422 ms
92,684 KB
testcase_10 AC 55 ms
68,984 KB
testcase_11 WA -
testcase_12 AC 347 ms
92,736 KB
testcase_13 WA -
testcase_14 AC 422 ms
92,892 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 396 ms
92,356 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 396 ms
92,732 KB
testcase_21 WA -
testcase_22 AC 397 ms
93,388 KB
testcase_23 WA -
testcase_24 AC 398 ms
93,068 KB
testcase_25 WA -
testcase_26 AC 405 ms
92,728 KB
testcase_27 AC 401 ms
92,500 KB
testcase_28 AC 408 ms
92,604 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin

N = int(stdin.readline())

ans = -1

for loop in range(1,N+1):

    print ("? " + str(loop) , flush=True )

    ans = max( ans , int(stdin.readline()) )

print ("!",ans)
0