結果

問題 No.661 ハローキティはりんご3個分
ユーザー yamax3232yamax3232
提出日時 2018-03-14 10:35:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 2,786 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-05-04 19:39:25
合計ジャッジ時間 3,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,280 KB
testcase_01 AC 109 ms
40,268 KB
testcase_02 AC 109 ms
39,980 KB
testcase_03 AC 119 ms
40,928 KB
testcase_04 AC 109 ms
40,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		int i=kb.nextInt();
		int[] a=new int[i];
		for(int j=0;j<a.length;j++){
			a[j]=kb.nextInt();
		}
		for(int j=0;j<a.length;j++){
			if(a[j]%40==0){
				System.out.println("ikisugi");
			}
			else if(a[j]%10==0){
				System.out.println("sugi");
			}else if(a[j]%8==0){
				System.out.println("iki");
			}else{
				System.out.println(a[j]/3);

			}
		}


	}

}
0