結果
| 問題 | No.2971 無理積分 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-08-08 15:18:50 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 264 bytes |
| 記録 | |
| コンパイル時間 | 366 ms |
| コンパイル使用メモリ | 82,028 KB |
| 実行使用メモリ | 54,116 KB |
| 最終ジャッジ日時 | 2024-08-08 15:18:58 |
| 合計ジャッジ時間 | 7,244 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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(0 <= N <= 1000) try: read() assert False except EOFError: pass