結果
問題 | No.661 ハローキティはりんご3個分 |
ユーザー | GB |
提出日時 | 2018-04-20 11:37:22 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 590 bytes |
コンパイル時間 | 2,384 ms |
コンパイル使用メモリ | 75,228 KB |
実行使用メモリ | 54,748 KB |
最終ジャッジ日時 | 2024-06-27 05:03:09 |
合計ジャッジ時間 | 3,186 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
ソースコード
import java.io.*; import java.util.*; class Main{ public static void main(String[] args) throws IOException{ Scanner scan=new Scanner(System.in); int i=scan.nextInt(); int[] n=new int[i+1]; for(int j=1;i<n.length;j++){ n[j]=scan.nextInt(); } for(int j=1;j<n.length;j++){ if(n[j]%8==0){ System.out.println("iki"); }else if(n[j]%10==0){ System.out.println("sugi"); }else if(n[j]%10==0 && n[j]%8==0){ System.out.println("ikisugi"); }else{ int m=n[j]/3; System.out.println(m); } } } }