結果
| 問題 |
No.2655 Increasing Strides
|
| コンテスト | |
| ユーザー |
ks2m
|
| 提出日時 | 2024-03-01 21:26:43 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 283 bytes |
| コンパイル時間 | 2,898 ms |
| コンパイル使用メモリ | 74,792 KB |
| 実行使用メモリ | 54,512 KB |
| 最終ジャッジ日時 | 2024-09-29 13:28:54 |
| 合計ジャッジ時間 | 8,117 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 29 WA * 5 |
ソースコード
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
sc.close();
if (n % 8 == 0) {
System.out.println("Yes");
} else {
System.out.println("No");
}
}
}
ks2m