結果

問題 No.1004 サイコロの実装 (2)
ユーザー 37zigen
提出日時 2020-03-06 17:33:22
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 74,036 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-10-14 02:56:23
合計ジャッジ時間 8,295 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 6 WA * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		long a=sc.nextLong();
		long b=sc.nextLong();
		long x0=sc.nextLong();
		long N=sc.nextLong();
		System.out.println(0+" "+0);
	}
}
0