結果

問題 No.8074 5000000000000000-SAT
ユーザー Maeda
提出日時 2025-09-05 16:36:52
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 401 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 76,568 KB
実行使用メモリ 46,572 KB
最終ジャッジ日時 2025-09-05 16:36:56
合計ジャッジ時間 3,686 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) {
        // 自分の得意な言語で
        // Let's チャレンジ!!
        Scanner scan = new Scanner(System.in);
        int n = scan.nextInt();
        for(int i = 0 ; i < n ; i++){
        	int a = scan.nextInt();
        	int b = scan.nextInt();
        }
		
        System.out.println("Yes");
    }
}
0