結果

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

ソースコード

diff #

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