結果

問題 No.3007 心の目で
ユーザー uafr_csuafr_cs
提出日時 2015-08-13 22:40:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 184 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 73,764 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-07-18 09:16:14
合計ジャッジ時間 3,476 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,536 KB
testcase_01 AC 108 ms
52,916 KB
testcase_02 AC 116 ms
53,780 KB
testcase_03 AC 107 ms
53,100 KB
testcase_04 AC 115 ms
53,048 KB
testcase_05 AC 119 ms
54,192 KB
testcase_06 AC 105 ms
52,788 KB
testcase_07 AC 99 ms
52,956 KB
testcase_08 AC 100 ms
52,384 KB
testcase_09 AC 103 ms
52,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		System.out.println(sc.nextLong() % 123456);
	}
	
}
0