結果

問題 No.1040 垂直大学
ユーザー joybeeeejoybeeee
提出日時 2020-05-12 20:48:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 2,667 ms
コンパイル使用メモリ 73,976 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-09-13 22:23:33
合計ジャッジ時間 6,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,004 KB
testcase_01 WA -
testcase_02 AC 131 ms
41,180 KB
testcase_03 AC 134 ms
41,532 KB
testcase_04 AC 135 ms
41,292 KB
testcase_05 AC 134 ms
41,376 KB
testcase_06 AC 135 ms
41,280 KB
testcase_07 AC 133 ms
41,384 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 135 ms
41,308 KB
testcase_11 AC 135 ms
41,292 KB
testcase_12 AC 135 ms
41,448 KB
testcase_13 AC 135 ms
41,280 KB
testcase_14 AC 134 ms
41,292 KB
testcase_15 AC 134 ms
41,264 KB
testcase_16 AC 135 ms
41,572 KB
testcase_17 AC 133 ms
41,380 KB
testcase_18 AC 133 ms
41,620 KB
testcase_19 AC 134 ms
41,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

  public static void main(String[] args) { 
      Scanner sc = new Scanner(System.in);
      int n = sc.nextInt();

      System.out.println(n % 90 == 0 ? "Yes" : "No");
  }
}
0