結果
問題 |
No.8107 Listening
|
ユーザー |
|
提出日時 | 2024-04-01 21:27:56 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 207 bytes |
コンパイル時間 | 1,890 ms |
コンパイル使用メモリ | 193,388 KB |
最終ジャッジ日時 | 2025-02-20 19:02:20 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 36 TLE * 4 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N,M; cin >> N >> M; cout << M << endl; for(int i=0; i<M; i++){ int u,v; cin >> u >> v; cout << i+1 << endl; } }