結果
| 問題 | No.1340 おーじ君をさがせ |
| コンテスト | |
| ユーザー |
maspy
|
| 提出日時 | 2020-10-29 09:23:56 |
| 言語 | Python3 (3.14.2 + numpy 2.4.0 + scipy 1.16.3) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 257 bytes |
| 記録 | |
| コンパイル時間 | 109 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 11,392 KB |
| 最終ジャッジ日時 | 2024-11-26 19:29:25 |
| 合計ジャッジ時間 | 3,728 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 59 |
ソースコード
import sys
lines = sys.stdin.readlines()
N, M, T = map(int, lines[0].split())
assert len(lines) == M + 1
assert 1<=N<=100
assert 0<=M<=10000
assert 0<=T<=10**18
for line in lines[1:]:
a, b = map(int, line.split())
assert 0<=a<=N
assert 0<=b<=N
maspy