結果
問題 | No.482 あなたの名は |
ユーザー | jj |
提出日時 | 2017-02-10 22:28:22 |
言語 | Fortran (gFortran 13.2.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 503 bytes |
コンパイル時間 | 678 ms |
コンパイル使用メモリ | 32,768 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-08 17:41:00 |
合計ジャッジ時間 | 4,499 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
program main implicit none integer::N,K,i,j,count,tmp integer,allocatable::D(:) data count/0/ read *,N,K allocate(D(N)) read *,D do i=1, N-1 do j=1, N-i if(D(j).gt.D(j+1)) then tmp = D(j+1) D(j+1) = D(j) D(j) = tmp count = count + 1 end if end do end do if(count .gt. K ) then print '("NO")' else if(MOD(count,2).eq.MOD(K,2)) then print '("YES")' else print '("NO")' end if end program main