結果
問題 | No.481 1から10 |
ユーザー | 水野嶺 |
提出日時 | 2020-05-20 16:57:09 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 309 bytes |
コンパイル時間 | 1,872 ms |
コンパイル使用メモリ | 73,928 KB |
実行使用メモリ | 54,460 KB |
最終ジャッジ日時 | 2024-10-01 23:39:42 |
合計ジャッジ時間 | 4,146 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
import java.util.*; import java.lang.*; import java.io.*; class Main { public static void main (String[] args) { // 入力値の読み込み Scanner sc = new Scanner(System.in); int f = sc.nextInt(); int nt=55; for(int m=0;m < 9;m++){ nt -= sc.nextInt(); } System.out.println(nt); } }