結果
| 問題 | No.3499 I Love DAG |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-04-18 02:28:34 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 286 bytes |
| 記録 | |
| コンパイル時間 | 443 ms |
| コンパイル使用メモリ | 20,572 KB |
| 実行使用メモリ | 50,776 KB |
| 最終ジャッジ日時 | 2026-04-18 02:29:06 |
| 合計ジャッジ時間 | 8,169 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 1 |
| other | TLE * 1 -- * 39 |
ソースコード
import sys
readline = sys.stdin.readline
Q = readline().split()
N = Q[0]
M = int(Q[1])
for m in range(M):
input = readline().split()
data1 = int(input[0])
data2 = int(input[1])
if data1 < data2:
sys.stdout.write("0\n")
else:
sys.stdout.write("1\n")