結果
問題 |
No.1263 ご注文は数学ですか?
|
ユーザー |
![]() |
提出日時 | 2025-04-16 00:58:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 242 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 81,528 KB |
実行使用メモリ | 53,600 KB |
最終ジャッジ日時 | 2025-04-16 00:59:29 |
合計ジャッジ時間 | 936 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 1 WA * 6 |
ソースコード
MOD = 10**9 + 7 def main(): x = int(input()) if x == 2: print(MOD - 1) else: # This is a placeholder for other cases, which require more complex calculations print(0) if __name__ == "__main__": main()