結果

問題 No.9000 Hello World! (テスト用)
ユーザー もろこし
提出日時 2025-10-03 09:45:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 349 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2025-10-03 09:45:43
合計ジャッジ時間 1,613 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
def ii(): return int(input())
def mi(d=0): return map(lambda x:int(x)-d,input().split())
INF = float("inf")
MOD = 998244353
def answer(s):
  print(s)
  exit()
def cross(xy):
  x,y = xy
  return (x+1,y),(x-1,y),(x,y+1),(x,y-1)
################################################
print("Hello World!")
0