結果

問題 No.358 も~っと!門松列
ユーザー yumechiyumechi
提出日時 2016-04-24 23:48:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 353 ms / 1,000 ms
コード長 723 bytes
コンパイル時間 11,974 ms
コンパイル使用メモリ 443,144 KB
実行使用メモリ 61,080 KB
最終ジャッジ日時 2024-11-20 07:10:20
合計ジャッジ時間 19,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
61,044 KB
testcase_01 AC 324 ms
60,940 KB
testcase_02 AC 326 ms
60,976 KB
testcase_03 AC 333 ms
60,892 KB
testcase_04 AC 333 ms
61,064 KB
testcase_05 AC 341 ms
61,080 KB
testcase_06 AC 328 ms
60,976 KB
testcase_07 AC 340 ms
60,972 KB
testcase_08 AC 329 ms
61,000 KB
testcase_09 AC 328 ms
61,076 KB
testcase_10 AC 325 ms
60,960 KB
testcase_11 AC 330 ms
61,012 KB
testcase_12 AC 331 ms
60,868 KB
testcase_13 AC 329 ms
60,792 KB
testcase_14 AC 331 ms
60,968 KB
testcase_15 AC 331 ms
60,904 KB
testcase_16 AC 340 ms
60,892 KB
testcase_17 AC 334 ms
61,064 KB
testcase_18 AC 327 ms
60,980 KB
testcase_19 AC 332 ms
61,028 KB
testcase_20 AC 344 ms
61,052 KB
testcase_21 AC 353 ms
60,784 KB
testcase_22 AC 335 ms
61,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:9:40: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
	var maxNum = intArrayOf(a, b, c).max()!!
                                       ^
Main.kt:17:27: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
		if(tarr[1] == tarr.max()!! || tarr[1] == tarr.min()!!) {
                          ^
Main.kt:17:54: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
		if(tarr[1] == tarr.max()!! || tarr[1] == tarr.min()!!) {
                                                     ^
Main.kt:27:27: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
		if(tarr[1] == tarr.max()!! || tarr[1] == tarr.min()!!) {
                          ^
Main.kt:27:54: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
		if(tarr[1] == tarr.max()!! || tarr[1] == tarr.min()!!) {
                                                     ^

ソースコード

diff #

import java.util.*;

fun main(args: Array<String>) {
	val cin = Scanner(System.`in`)

	var a = cin.nextInt()
	var b = cin.nextInt()
	var c = cin.nextInt()
	var maxNum = intArrayOf(a, b, c).max()!!

	var res: Int = 0
	for(i in 1..maxNum) {
		var tarr = intArrayOf(a % i, b % i, c % i)
		if(tarr[0] == tarr[1] || tarr[1] == tarr[2] || tarr[2] == tarr[0]) {
			continue
		}
		if(tarr[1] == tarr.max()!! || tarr[1] == tarr.min()!!) {
			res++
		}
	}

	maxNum++
	var tarr = intArrayOf(a % maxNum, b % maxNum, c % maxNum)
	if(tarr[0] == tarr[1] || tarr[1] == tarr[2] || tarr[2] == tarr[0]) {
		println(res)
	} else {
		if(tarr[1] == tarr.max()!! || tarr[1] == tarr.min()!!) {
			println("INF")
		} else {
			println(res)
		}
	}
}
0