結果

問題 No.661 ハローキティはりんご3個分
ユーザー YamaKasaYamaKasa
提出日時 2018-05-09 17:49:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-06-28 02:49:11
合計ジャッジ時間 3,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,016 KB
testcase_01 AC 135 ms
41,464 KB
testcase_02 AC 134 ms
41,444 KB
testcase_03 AC 131 ms
41,148 KB
testcase_04 AC 118 ms
39,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []a = new int[N];
		for(int i = 0; i < N; i++) {
			a[i] = scan.nextInt();
		}
		scan.close();
		for(int i = 0; i < N; i++) {
			if(a[i] % 8 == 0 && a[i] % 10 == 0) {
				System.out.println("ikisugi");
			}else if(a[i] % 10 == 0) {
				System.out.println("sugi");
			}else if(a[i] % 8 == 0) {
				System.out.println("iki");
			}else {
				System.out.println(a[i] / 3);
			}
		}
	}
}
0