結果
| 問題 |
No.1119 Division 3
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-02-11 18:10:06 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 351 bytes |
| コンパイル時間 | 1,909 ms |
| コンパイル使用メモリ | 74,032 KB |
| 実行使用メモリ | 54,796 KB |
| 最終ジャッジ日時 | 2024-07-18 06:32:15 |
| 合計ジャッジ時間 | 4,890 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | AC * 11 WA * 5 |
ソースコード
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int[] number = new int[3];
for(int i = 0; i < number.length; ++i){
number[i] = sc.nextInt();
if(i % 3 == 0){
System.out.println("Yes");
}
}
}}