結果

問題 No.1263 ご注文は数学ですか?
ユーザー gew1fw
提出日時 2025-06-12 16:12:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 84 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,896 KB
実行使用メモリ 53,672 KB
最終ジャッジ日時 2025-06-12 16:12:32
合計ジャッジ時間 1,194 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
mod = 10**9 + 7
if x == 2:
    print(1000000006)
else:
    print(0)
0