結果
| 問題 |
No.2734 Addition and Multiplication in yukicoder (Hard)
|
| コンテスト | |
| ユーザー |
みどりむし🦠
|
| 提出日時 | 2024-04-14 19:50:41 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 191 bytes |
| コンパイル時間 | 433 ms |
| コンパイル使用メモリ | 81,956 KB |
| 実行使用メモリ | 106,368 KB |
| 最終ジャッジ日時 | 2024-10-03 22:02:38 |
| 合計ジャッジ時間 | 6,387 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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
みどりむし🦠