結果
| 問題 | No.2734 Addition and Multiplication in yukicoder (Hard) |
| コンテスト | |
| ユーザー |
みどりむし🦠
|
| 提出日時 | 2024-04-14 19:50:41 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 191 bytes |
| 記録 | |
| コンパイル時間 | 764 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 115,712 KB |
| 最終ジャッジ日時 | 2026-04-19 22:02:05 |
| 合計ジャッジ時間 | 4,852 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 36 |
ソースコード
n = int(input()) assert 1 <= n <= 2 * 10 ** 5 A = [*map(int, input().split())] assert len(A) == n assert all(1 <= a <= 10**18 for a in A) try: input() assert False except EOFError: pass
みどりむし🦠