結果
問題 | No.661 ハローキティはりんご3個分 |
ユーザー | YukimotoPG |
提出日時 | 2019-02-13 14:25:37 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 388 bytes |
コンパイル時間 | 2,003 ms |
コンパイル使用メモリ | 74,164 KB |
実行使用メモリ | 55,744 KB |
最終ジャッジ日時 | 2024-09-13 09:57:04 |
合計ジャッジ時間 | 3,251 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
import java.util.*; class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int n = sc.nextInt(); for (int i=0; i<n; i++) { int temp = sc.nextInt(); if (temp%8 == 0) System.out.println("iki"); else if (temp%10 == 0) System.out.println("sugi"); else if (temp%8==0 && temp%10==0) System.out.println("ikisugi"); } } }