結果
| 問題 |
No.1562 Welcome to ????? & ????
|
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-09-11 11:24:52 |
| 言語 | Java (openjdk 23) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 327 bytes |
| コンパイル時間 | 2,403 ms |
| コンパイル使用メモリ | 76,292 KB |
| 実行使用メモリ | 46,492 KB |
| 最終ジャッジ日時 | 2025-09-11 11:24:55 |
| 合計ジャッジ時間 | 3,332 ms |
|
ジャッジサーバーID (参考情報) |
judge / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 1 |
ソースコード
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
int m = scan.nextInt();
for(int i = 0 ; i < m ; i++){
int a = scan.nextInt();
int b = scan.nextInt();
int c = scan.nextInt();
}
System.out.println(n);
}
}
Maeda