結果
| 問題 | No.2734 Addition and Multiplication in yukicoder (Hard) |
| コンテスト | |
| ユーザー |
みどりむし🦠
|
| 提出日時 | 2024-04-14 20:03:11 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 364 bytes |
| 記録 | |
| コンパイル時間 | 346 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 116,096 KB |
| 最終ジャッジ日時 | 2026-04-19 22:14:21 |
| 合計ジャッジ時間 | 4,009 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 36 |
ソースコード
from sys import stdin def read(): line = stdin.readline() if not line: raise EOFError assert line[-1] == "\n" line = line[:-1] assert line.strip() == line return line n = int(read()) assert 1 <= n <= 2 * 10 ** 5 A = [*map(int, read().split())] assert len(A) == n assert all(1 <= a <= 10**18 for a in A) try: read() assert False except EOFError: pass
みどりむし🦠