結果
問題 | No.2647 [Cherry 6th Tune A] Wind |
ユーザー |
|
提出日時 | 2024-03-03 02:27:30 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 728 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-29 16:42:24 |
合計ジャッジ時間 | 1,210 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 WA * 8 |
ソースコード
def get() -> str: return input()def getint() -> int: return int(input())def getbin() -> str: return bin(int(input()))[2:]def getfloat() -> float: return float(input())def mapint() -> map: return map(int, input().split())def mapbin() -> map: return map(bin(int), input().split())def mapfloat() -> map: return map(float, input().split())def listint() -> list: return list(map(int, input().split()))def listfloat() -> list: return list(map(float, input().split()))####################################################################################################T=int(input())for i in range(T):D,A=mapint()X=listint()ans=[]for j in X:ans.append(str(round(j/A)))print(" ".join(ans))