結果
| 問題 | No.1255 ハイレーツ・オブ・ボリビアン |
| コンテスト | |
| ユーザー |
maspy
|
| 提出日時 | 2020-09-07 14:54:12 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 224 bytes |
| 記録 | |
| コンパイル時間 | 326 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 35,924 KB |
| 最終ジャッジ日時 | 2026-04-02 20:04:36 |
| 合計ジャッジ時間 | 2,411 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 15 |
ソースコード
# WA を期待
import sys
lines = sys.stdin.readlines()
T = int(lines[0])
lines = lines[1:]
assert 1<=T<=100
assert len(lines)==T
for line in lines:
assert line.endswith('\n')
N = int(line)
assert 1<=N<=10**9
maspy