結果
問題 | No.661 ハローキティはりんご3個分 |
ユーザー | youthfuldays072 |
提出日時 | 2018-06-22 17:52:25 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 516 bytes |
コンパイル時間 | 2,566 ms |
コンパイル使用メモリ | 74,632 KB |
実行使用メモリ | 54,184 KB |
最終ジャッジ日時 | 2024-06-30 18:02:08 |
合計ジャッジ時間 | 3,552 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
54,184 KB |
testcase_01 | WA | - |
testcase_02 | AC | 135 ms
54,032 KB |
testcase_03 | AC | 134 ms
54,044 KB |
testcase_04 | AC | 133 ms
53,848 KB |
ソースコード
import java.util.Scanner; public class Main{ public static void main(String[] args) { Main main=new Main(); main.run(); } void run() { Scanner sc=new Scanner(System.in); int N=sc.nextInt(); for (int i = 0; i < N; i++) { int buf=sc.nextInt(); if(buf%80==0) { System.out.println("ikisugi"); }else if(buf%8==0) { System.out.println("iki"); }else if(buf%10==0){ System.out.println("sugi"); }else { if(buf%3==0) { System.out.println(buf/3); } } } } }