結果

問題 No.1414 東大文系数学2021第2問改
ユーザー 37zigen
提出日時 2021-02-28 19:13:31
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 75,548 KB
実行使用メモリ 41,840 KB
最終ジャッジ日時 2024-10-02 21:53:12
合計ジャッジ時間 6,693 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Main
{
    public static void main(String[] args)
    {
        new Main().run();
    }
    
    void run()
    {
    	Scanner sc=new Scanner(System.in);
    	int N=sc.nextInt();
    	int M=sc.nextInt();
    	int K=sc.nextInt();
    	assert(2<=K&&K<=M&&M<=N&&N<=1e7);
    }
    
    
    void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}
0