結果

問題 No.661 ハローキティはりんご3個分
ユーザー youthfuldays072youthfuldays072
提出日時 2018-06-22 17:55:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 2,261 ms
コンパイル使用メモリ 77,640 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-06-30 18:02:41
合計ジャッジ時間 3,485 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,092 KB
testcase_01 AC 131 ms
54,188 KB
testcase_02 AC 131 ms
54,220 KB
testcase_03 AC 130 ms
53,948 KB
testcase_04 AC 131 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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%8==0 && buf%10==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);
				}
			}
		}


	}
}


0